* {
    margin: 0;
    padding: 0;
    color: white;
    font-family: 'Roboto', Arial, sans-serif;
    text-decoration: none;
    scrollbar-width: none;
}
body{
    background: black;
    color: white;
}
.button1{
    border: none;
    background: none;
    outline: none;
    font-size: 20px;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: all ease-in-out .1s;
}
.button1:hover{
    color: #808080;
}
.button2{
    border: solid 2px white;
    background: none;
    outline: none;
    font-size: 20px;
    padding: 12px 50px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: all ease-in-out .1s;
}
.button2:hover{
    outline: solid 2px #fff;
}
.button3{
    border: solid 2px white;
    background: white;
    outline: none;
    font-size: 20px;
    padding: 12px 50px;
    border-radius: 25px;
    color: black;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: all ease-in-out .1s;
}
.button3:hover{
    outline: solid 2px #fff;
}
.selector3{
    border: solid 2px white;
    background: white;
    outline: none;
    font-size: 20px;
    padding: 12px 50px;
    border-radius: 25px;
    color: black;
    font-weight: 500;
    text-align: left;
}

.input1{
    border: solid 2px white;
    background: none;
    outline: none;
    font-size: 20px;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 400;
}

.small{
    padding: 6px 25px!important;;
}

.popups{
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9;
    animation: flyOut 5s forwards;
}
.popups div{
    background: #202020;
    padding: 25px;
    border-radius: 10px;
    border: solid #303030 2px;
    margin-bottom: 10px;
}
.popups div span{
    font-size: 20px;
    font-weight: 600;
}
.popups div p{
    font-size: 18px;
    font-weight: 400;
}
@keyframes flyOut {
    90% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(100vw);
    }
}

@font-face {
    font-family: 'Roboto';
    src: url('./fonts/Roboto-Thin.ttf') format('truetype'); /* Thin weight */
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('./fonts/Roboto-Light.ttf') format('truetype'); /* Light weight */
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('./fonts/Roboto-Regular.ttf') format('truetype'); /* Regular weight */
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('./fonts/Roboto-Medium.ttf') format('truetype'); /* Medium weight */
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('./fonts/Roboto-Bold.ttf') format('truetype'); /* Bold weight */
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('./fonts/Roboto-Black.ttf') format('truetype'); /* Black weight */
    font-weight: 900;
    font-style: normal;
}