:root{
    --blue: #00B3FF;
    --white:  #fff;
    --dark-blue: #131B6A;
    --grey: rgba(217, 217, 217, 0.6);
    --green: #00FF0A;
    --red: #FF0000;

    --title: 'Nasalization';
    --subtitle:  'Gotham Bold';
    --text:  'Gotham Book';
}
body{
    background-color: black;
    background-image: url(../img/bg.jpg);
    /*background-size: 100% 100%;*/
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    width: 100vw;
    height: 100vh;

    position: relative;
    overflow-x: hidden;
}
.scroll{
    overflow-y: auto;
    scrollbar-color: #D9D9D9;
    scrollbar-width: thin;
}
.scroll::-webkit-scrollbar {
    width: 12px;
}
.scroll::-webkit-scrollbar-track {
    background-color: rgba(235, 182, 70, 0.4);
}

.scroll::-webkit-scrollbar-thumb {
    background-color: #d89035;
}
.aviso{
    position: absolute;
    z-index: 999;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 40px;
    color: #fff;
    font-family: var(--subtitle);
    width: calc(100% - 80px);
    white-space: unset;
    font-size: calc(8px + (12 - 8) * ((100vw - 320px) / (1920 - 320)));
    text-align: center;
}
.aviso a{
    color: #fff;
}

@media only screen and (orientation: landscape) {
    body {
        background-image: url('../img/bg-desktop.png');
        /*background-size: auto;*/
        /*background-repeat: no-repeat;*/
        /*background-position: center;*/
        background-size: cover;
    }
    .aviso{
        padding: 10px 20px;
        white-space: nowrap;
        width: auto;
        text-align: left;
    }
}
