html {
    width: 100%;
    height: 100%;
    font-family: 'Verdana', sans-serif;
}

body {
    margin: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    background-image: url('../img/bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #FFF;
}

.main {
    width: 100%;
    height: 95%;
}

.logo-container {
    padding-top: 1%;
    margin-bottom: 2%;
    width: 100%;
    height: 25%;
    text-align: center;
}

.logo-container img {
    max-width: 90%;
    max-height: 100%;
}

.carrousel-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 560px;
    height: 315px;
}

.carrousel {
    width: 100%;
    height: 100%;
    position: relative;
    border: 1px solid #FFF;
    background-color: #000;
    cursor: pointer;
}

.carrousel .content {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carrousel .content .slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    transition: opacity 1s;
}

.carrousel .content .visible {
    display: block;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.carrousel .content .slide img {
    width: 100%;
    height: 100%;
}

.carrousel .content .slide .youtube-player {
    width: 100%;
    height: 100%;
}

.carrousel  .controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    text-align: center;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.carrousel .controls .button {
    cursor: pointer;
    display: inline-block;
    background-color: #FFF;
    border-radius: 6px;
    width: 12px;
    height: 12px;
    transition: background-color 1s;
}


.carrousel .controls .button:hover {
    background-color: #FA4;
}

.carrousel .controls .active {
    background-color: #F60;
}

.description {
    color: #FFF;
    font-size: 22px;
    text-align: center;
    max-width: 670px;
    margin: 18px auto 0;
    text-shadow: #000 1px 1px 1px, #000 1px 1px 1px, #000 1px 1px 1px
}

.play-container {
    text-align: center;
    margin-top: 32px;
    width: 100%;
    height: 190px;
}

.play-button {
    padding: 14px 20px;
    background-image: url('../img/button.png');
    background-position: center;
    background-size: 100% 100%;
    text-decoration: none;
    color: #FFF;
    font-size: 46px;
    font-weight: bold;
    text-shadow: 0 0 8px #000;
    transition: background-color 0.25s;
}

.overlay {
    display: none;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNk2A8AAMUAwUPJ2C4AAAAASUVORK5CYII=');
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
}

.overlay .container {
    position: absolute;
    top: 5%;
    left: 5%;
    right: 5%;
    bottom: 5%;
    text-align: center;
}

.overlay .fs-slide {
    max-width: 100%;
    max-height: 100%;
}

.overlay .video-container {
    position: relative;
    width: 100vmin;
    height: 56.25vmin;
    margin: 0 auto;
}

.overlay .video-container .youtube-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (min-width: 480px) and (max-width: 559px) and (min-height: 580px) and (max-height: 650px), (min-width: 560px) and (min-height: 650px) and (max-height: 700px), (min-height: 580px) and (max-height: 650px) {
    .carrousel-container {
        width: 480px;
        height: 270px;
    }

    .description {
        max-width: 550px;
        font-size: 18px;
    }

    .steam-desc-container {
        margin-top: 28px;
    }
}

@media (min-width: 360px) and (max-width: 479px) and (min-height: 500px), (min-width: 480px) and (max-width: 559px) and (max-height: 720px), (min-height: 500px) and (max-height: 579px) {
    .carrousel-container {
        width: 360px;
        height: 203px;
    }

    .description {
        max-width: 410px;
        font-size: 17px;
    }

    .steam-desc-container {
        margin-top: 28px;
    }
}

@media (max-width: 359px), (max-height: 499px) {
    .carrousel-container {
        width: 250px;
        height: 141px;
    }

    .description {
        max-width: 330px;
        font-size: 16px;
    }

    .steam-desc-container {
        margin-top: 26px;
    }
}