html, body, .wrapper {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: 'Roboto';
    /* font-size: 16px; */
}

p { 
    margin: 0; 
    padding: 0;
    letter-spacing: -0.0125em;
}

.underline {
    border-radius: .5em;
}

@media (min-width: 481px) {

    html {
        font-size: 2vh;
    }

    .mobile-only {
        display: none;
    }

    body {
        height: 11200px;
    }
    
    .wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 178vh;
        height: 100vh;
        overflow: hidden;
    }

    .blur {
        filter:blur(15px);
        -o-filter:blur(15px);
        -ms-filter:blur(15px);
        -moz-filter:blur(15px);
        -webkit-filter:blur(15px);
    }
    
    .scroll {
        height: 100vh;
        position: fixed;
        top: 0;
    }
    
    .background-image {
        z-index: 0;
        position: fixed;
        /* width: 100vw;
        height: 100vh; */
        left: 100vw;
    }
    
    .selecao-idioma {
        width: 100vw;
        height: 100vh;
        position: fixed;
        z-index: 10;
        /* display: none; */
    }
    
    .selecao-idioma .overlay {
        width: 100vw;
        height: 100vh;
        position: fixed;
        background-color: rgba(0, 0, 0, 0.7);
        /* opacity: 0.8; */
        z-index: 10;
    }
    
    .selecao-idioma .paises {
        width: 70vw;
        height: 70vh;
        top: calc(50% - 35vh);
        left: calc(50% - 35vw);
        z-index: 11;
        position: fixed;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }
    
    .selecao-idioma .paises .pais {
        color: #FFFFFF;
        font-size: 2.5em;
        font-weight: 200;
        width: 33%;
        text-align: center;
        cursor: pointer;
    }

    .selecao-idioma .paises .pais img {
        width: 10vw;
        height: auto;
    }
    
    .trocar-idioma {
        position: absolute;
        color: #FFFFFF;
        font-weight: 500;
        right: 32px;
        top: 18px;
        z-index: 10;
        cursor: pointer;
    }
}

@media (max-width: 480px) {
    
    .desktop-only {
        display: none;
    }

    html, body, .wrapper {
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
        font-family: 'Roboto';
        font-size: 3.75vw;
        -webkit-tap-highlight-color:transparent;
    }

    .blur {
        filter:blur(15px);
        -o-filter:blur(15px);
        -ms-filter:blur(15px);
        -moz-filter:blur(15px);
        -webkit-filter:blur(15px);
    }
    .selecao-idioma {
        width: 100vw;
        height: 100vh;
        position: fixed;
        z-index: 10;
        /* display: none; */
    }

    .selecao-idioma .overlay {
        width: 100vw;
        height: 100vh;
        position: fixed;
        background-color: rgba(0, 0, 0, 0.7);
        /* opacity: 0.8; */
        z-index: 10;
    }

    .selecao-idioma .paises {
        width: 90vw;
        height: 70vh;
        top: calc(50% - 35vh);
        left: calc(50% - 45vw);
        z-index: 11;
        position: fixed;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .selecao-idioma .paises .pais {
        color: #FFFFFF;
        font-size: 2em;
        font-weight: 200;
        width: 50%;
        text-align: center;
        cursor: pointer;
        margin: 2vh 0;
    }

    .selecao-idioma .paises .pais img {
        width: 25vw;
        height: 25vw;
    }

    .trocar-idioma {
        position: absolute;
        color: #FFFFFF;
        font-weight: 500;
        right: 0;
        top: 0;
        padding: 1.5em 1em;
        height: 10vh;
        z-index: 10;
        box-sizing: border-box;
    }

    .trocar-idioma img {
        height: 100%;
    }
}

@keyframes changeContent {
    10% { content: "⠙"; }
    20% { content: "⠹"; }
    30% { content: "⠸"; }
    40% { content: "⠼"; }
    50% { content: "⠴"; }
    60% { content: "⠦"; }
    70% { content: "⠧"; }
    80% { content: "⠇"; }
    90% { content: "⠏"; }
}