
#animation {
    background-image: url(../bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
    opacity: 0;

}

#animation.show {
    animation: fadeIn 5s;
    animation-fill-mode: forwards;

}

#animation.show.award #showcase{
    animation: fadeOut 1s;
    animation-fill-mode: forwards;
}

.animation-result{
    opacity: 0;
}

.animation-result{
    color: #fff;
    text-align: center;
    position: absolute;
    /*top: calc(50% - 30px);*/
    /*top: calc(25% - 30px);*/
    top: calc(35% - 30px);
    left: 0;
    z-index: 1;
    width: 100%;
    padding: 0 10px;
}

.animation-result-lose{
    margin-top: 20px;
}

.animation-result h2{
    font-family: "Open Sans";
    font-size: 30px;
    font-weight: bold;
    text-shadow: 0 11px 21px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    margin-top: 0;
}

.animation-result p{
    font-family: "Open Sans";
    font-size: 22px;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.animation-result p img{
    max-width: 200px;
    height: auto;
}

#animation.show.award .animation-result{
    animation: fadeIn 3s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

.animation-container{
    max-width: 800px;
    margin: 0 auto;
    padding-top: 100px;

    /*max-width: 800px;*/
    /*margin: 0 auto;*/
    /*!*padding-top: 100px;*!*/
    /*width: 100%;*/
    /*height: 500px;*/
    /*padding-top: 50px;*/
}

.animation-text{
    font-family: "Open Sans";
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    text-shadow: 0 11px 21px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    position: absolute;
    top: calc(50% - 30px);
    left: 0;
    z-index: 1;
    width: 100%;
}

#animation.show.award .animation-text{
    animation: fadeOut 1s;
    animation-fill-mode: forwards;
}

#showcase {
    /*width: 100%;*/
    /*height: 100%;*/

    width: 100%;
    height: 500px;
    margin: 0 auto;
    padding-top: 50px;
}
#showcase img {
    max-width: 300px;
    height: auto;
}

@media only screen and (max-width: 780px) {
    #showcase img {
        max-width: 150px;
        height: auto;
    }

    .animation-text {
        font-size: 20px;
    }
}

.game-start-counter {
    color: #f6c958;
    margin: 0 auto;
    text-align: center;
    position: relative;
    top: -70px;
    margin-bottom: -100px;
}

.game-start-counter ul{
    padding-left: 0;
}

.game-start-counter h1 {
    font-weight: normal;
    letter-spacing: .125rem;
    text-transform: uppercase;
}

.game-start-counter li {
    display: inline-block;
    font-size: 1.5em;
    list-style-type: none;
    padding: 1em;
    text-transform: uppercase;
}

.game-start-counter li span {
    display: block;
    font-size: 4.5rem;
}

.game-start-counter .emoji {
    display: none;
    padding: 1rem;
}

.game-start-counter .emoji span {
    font-size: 4rem;
    padding: 0 .5rem;
}

@media (min-width: 400px) {
    .game-start-counter{
        top: -70px;
    }
}

@media (min-width: 500px) {
    .game-start-counter{
        top: -106px;
    }
}

@media (min-width: 769px) {
    .game-start-counter{
        top: -180px;
        margin-bottom: -200px;
    }
}

@media (min-width: 1024px) {
    .game-start-counter{
        top: -190px;
    }
}

@media (min-width: 1200px) {
    .game-start-counter{
        top: -180px;
    }
}

@media (min-width: 1366px) {
    .game-start-counter{
        top: -180px;
    }
}

@media (min-width: 1600px) {
    .game-start-counter{
        top: -230px;
    }
}

@media all and (max-width: 330px) {

    .game-start-counter li {
        font-size: calc(1.125rem * .5);
    }

    .game-start-counter li span {
        font-size: calc(3.375rem * .5);
    }
}

@media all and (max-width: 768px) {

    .game-start-counter li {
        font-size: calc(1.125rem * .75);
    }

    .game-start-counter li span {
        font-size: calc(3.375rem * .75);
    }
}