/* 
* styles for the 30Birds video game website
* @author: Laurent Toulouse
* 2019
*/

html {
    max-height: 100%;
    /* background-image: url("/30birds/img/website_bg3.jpg");
    background-repeat: no-repeat; */
}

body {
    margin: 0;
    min-height: 100vh;
}

#content-container {
    /* background-image: url("/30birds/img/website_bg3.jpg"); */    
    background-image: url("/img/website_bg3.jpg");    
    background-repeat: no-repeat;
    background-size: 100vw;
    margin-top: 0;
    padding-top: 0;
    min-height: 100vh;
}

#content {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#title-div {
    padding-top: 5vh;
    transition: all 0.25s ease-in-out 0s;
}

#title-img {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

#newsletter-div {
    margin-top: 10vmin;
}

.mc-field-group label {
    color: white;
}

#mc_embed_signup .button {
    background: none;
    color: white;
    border: solid 1px white;
    transition: all 0.2s ease-in-out 0s;
}

/* #mc_embed_signup .button:hover {
    background-color: #7c75bb;
    color: #c9dacc;
} */

#mc_embed_signup .button:hover {
    padding: 0px 20px; 
    background: none;
    color: white;
}

#mc_embed_signup {
    clear:left; 
    font:14px Helvetica,Arial,sans-serif; 
    width:100%;
}

#mc_embed_signup label {
    color: white;
    font-size: 12px;
}

#mc_embed_signup input.email {
    width: 250px;
}

#contact-div, #presskit-div, #company-div, #steam-div {
    clear: both;
    text-align: center;
    margin-top: 3vmin;
}

#contact-div a {
    text-decoration: none;
}

#presskit-div a, #company-div p {
    color: white;
    text-decoration: none;
    font:14px Helvetica,Arial,sans-serif; 
}

#company-div, #steam-div {
    margin-bottom: 1vmin;
}

#steam-div {
    margin-top: 3vh;
    margin-bottom: 3vh;
    max-width: 100vw;
}

#steam-div > iframe, #trailer-centered-container > iframe {
    max-width: 96%;
}

#trailer-div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: auto;
    margin-top: 15vh;
    max-width: 100vw;
}

#trailer-centered-container {
    border: solid white;
    background-color: black;
    padding: 12px;
    max-width: 100%;
}

#presskit-div a {
    border: none;
    border-radius: 3px;
    padding: 6px 14px;
    margin-bottom: 3vmin;
    transition: padding 0.2s ease-in-out 0s;
}

#presskit-div a:hover {
    border: solid 1px white;
    padding: 6px 16px;
}

.contact-icon {
    width: 3em;
    height: 3em;
    margin-left: 1vmin;
    vertical-align: middle;
    transition: all 0.25s ease;
}

.contact-icon:hover {
    /* width: 3.5em;
    height: 3.5em; */
    transform: scale(1.2);
}

#space-div {
    margin: 10vh;
    transition: all 0.5s ease-in-out;
}

@media (max-width: 768px) {
        #mc_embed_signup .button {
            width: auto;
    }
}

@media (max-height: 800px) {
        #space-div {
            margin: 0;
    }
}

