:root {
    --button-background-color: #28292B;
    --buttons-detail-size: 6.4vh;
    --popup-overlay: #0000007F;
}
::selection {
    background: transparent;
}
::-moz-selection {
    background: transparent;
}
@font-face {
    font-family: 'Atala';
    src: url('Alata-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'mikado';
    src: url('https://daily-trivia-assets.s3.amazonaws.com/standar/fonts/mikadoblack-webfont.woff') format('truetype');
}


.container {
    font-family: Atala, serif;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.logo {
    margin-top: 10vh;
    width: 16vh;
}

.welcome {
    color: white;
    font-size: 2.7vh;
    margin: 2vh;
}

.socials {
    color: white;
    font-size: 3vh;
    margin: 2vh;
}

.button {
    width: 33.5vh;
    height: 8.2vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    align-content: center;
    border: none;
    margin: 5vh 0 0 0;
    border-radius: 3.2vh;
    font-size: 1.8vh;
    background-color: var(--button-background-color);
    color: #FFFFFF;
    cursor: pointer;
}

.button:before {
    content: "";
    height: 8.2vh;
    position: absolute;
    width: var(--buttons-detail-size);
    max-width: var(--buttons-detail-size);
    min-width: var(--buttons-detail-size);
    background-color: #F32732;
    border-radius: 3.2vh 0 0 3.2vh;
}

.button:hover {
    opacity: 0.9;
}

.button-icon {
    z-index: 1;
    height: 9vh;
    content: "";
    min-width: var(--buttons-detail-size);
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50%;
    background-position-x: 1.5vh;
    margin-left: 0.33vh;
}

.button-1 {
    z-index: 1;
    text-align: left;
    position: relative;
    margin: 0 0 0 calc(2.3vh + var(--buttons-detail-size));
    padding-right: 4.8vh;
    background-color: transparent;
    color: #FFFFFF;
}


.powered-by {
    align-self: center;
    width: 100%;
    height: 3vh;
    padding-bottom: 3vh;
}

body {
    font-family: 'Arial', sans-serif;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-color: black;
    margin: 0;
    padding: 0;
    text-align: center;
    align-items: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.popup-overlay {
    z-index: 100;
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    background: var(--popup-overlay);
    align-items: center;
    justify-content: center;
}

.popup {
    width: 30vh;
    max-width: 30vh;
    height: 30vh;
    max-height: 30vh;
    border-radius: 3vh;
    background: var(--button-background-color);
    display: flex;
    align-items: center;
    flex-direction: column;
}

.logo-small {
    margin-top: 2vh;
    width: 11.5vh;
}

.popup-description {
    color: white;
    font-size: 2.1vh;
    margin: 0 3vh 2vh 3vh;
}

.ok-button {
    content: "Ok";
    height: 4vh;
    width: 9vh;
    background-color: #F32732;
    border-radius: 3.2vh;
    border-style: none;
    font-size: 2.1vh;
    color: white;
    margin-top: 1vh;
}

