* {
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00339f;
    font-family: 'Texta', serif;
    text-align: center;
    overflow: auto;
}

a:active, button:active,
a:focus, button:focus 
{
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

/****************************************************/
/***************** Fonts & Headings *****************/
/****************************************************/

/* Texta Regular */
@font-face {
    font-family: 'Texta';
    src: url('fonts/Texta_Rg.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Texta Bold */
@font-face {
    font-family: 'Texta';
    src: url('fonts/Texta_Bd.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

/****************************************************/
/*************** End Fonts & Headings ***************/
/****************************************************/

/****************************************************/
/*********************** Main ***********************/
/****************************************************/

.container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Logo */
.wrapper-logo {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 100;
}

    .wrapper-logo img {
        width: 82px;
        height: auto;
    }

/* Newsletter */ 
#newsletterContent {
    position: absolute;
    bottom: 5%;
    left: 50%;
    width: 65%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: opacity 1.5s;
    -moz-transition: opacity 1.5s;
    -o-transition: opacity 1.5s;
    transition: opacity 1.5s;
    z-index: 1000;
}

.newsletter-txt {
    color: #2b2b2b;
    font-size: 24px;
}

    .newsletter-txt a,
    .newsletter-txt a:hover,
    .newsletter-txt a:visited
    {
        color: #2b2b2b;
        font-weight: bold;
    }

/* Background Video */
.container-video {
    width: 100%;
    height: 100%;
}

#bgVideo {
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
}

#muteBtn {
    background: url('assets/icon_unmute.png');
    background-size: 32px 32px;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    cursor: pointer;
}

/****************************************************/
/********************* End Main *********************/
/****************************************************/

/****************************************************/
/*********** Media Queries - Screen Height **********/
/****************************************************/

/*** Max Screen Height 580px ***/
@media screen and (max-width: 580px), (max-width: 320px) {

    /* Logo */
    .wrapper-logo {
        top: 6px;
        left: 6px;
    }

    .wrapper-logo img {
        width: 64px;
        height: auto;
    }

    /* Newsletter */ 
    #newsletterContent {
        bottom: 2%;
        width: 90%;
    }

    .newsletter-txt { font-size: 18px; }


    /* Background Video */
    #muteBtn {
        background-size: 24px 24px;
        top: 6px;
        right: 6px;
        width: 24px;
        height: 24px;
    }

}

/*** Max Screen Height 480px ***/
@media screen and (max-height: 480px), (max-width: 260px)  {

     /* Logo */
    .wrapper-logo img {
        width: 54px;
        height: auto;
    }

    /* Newsletter */
    #newsletterContent { margin-top: 25px; }

    .newsletter-txt {
        margin-top: 5px; 
        font-size: 14px; 
    }

}

/*** Max Screen Height 370px ***/
@media screen and (max-height: 370px), (max-width: 210px) {

    /* Newsletter */
    .newsletter-txt { font-size: 12px; }

    /* Background Video */
    #muteBtn {
        background-size: 20px 20px;
        top: 4px;
        right: 4px;
        width: 20px;
        height: 20px;
    }
    
}

/*** Max Screen Height 300px ***/
@media screen and (max-height: 300px), (max-width: 170px) {

    /* Logo */
    .wrapper-logo {
        top: 4px;
        left: 4px;
    }

    .wrapper-logo img {
        width: 48px;
        height: auto;
    }

    /* Newsletter */
    .newsletter-txt { font-size: 11px; }
    
}

/****************************************************/
/********* End Media Queries - Screen Height ********/
/****************************************************/