body {
    margin: 0;
    padding: 0;
    height: 100vh;
}

.game-wrapper {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: 3px solid #ff1a47;
    border-radius: 10px;
    text-align: center;
    padding: 10px 5%;
    overflow: auto;
}

.game-header {
    font-size: 26px;
    margin-bottom: 20px;
}

.game-message {
    font-size: 20px;
    margin-bottom: 30px;
}


.message {
    display: flex;
    flex-flow: column;
    justify-content: center;
    position: absolute;
    width: 100%;
    background: #000 url('../img/anatoly.png') no-repeat center;
    height: 100%;
    background-size: contain;
    padding: 30px 50px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    overflow: auto;
    border-radius: 3px;
    box-sizing: border-box;
    z-index: 15;
    color: #fff;
    font-weight: 600;
    font-size: 18px;

    letter-spacing: .15em; /* Adjust as needed */
}

.message.hide {
    z-index: -1;
}

.gifs {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
}

@media screen and (max-width: 480px) {
    .game-header {
        font-size: 24px;
    }
    .game-message {
        font-size: 18px;
    }

    .message {
        font-size: 17px;
        width: 100%;
        height: 100%;
        padding: 30px 20px;
        justify-content: flex-start;
    }
}

.turn-phone {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #ccc url('../img/change-orientation.png') center no-repeat;
    background-size: 50px 50px;
    z-index: 20;
}

/*@media screen and (max-height: 430px) {*/
    /*.turn-phone {*/
        /*display: block;*/
    /*}*/
/*}*/

a {
    color: inherit;
}

.hide {
    opacity: 0;
}

.draggable {
    display: inline-block;
    position: relative;
    z-index: 10;
}

.drop-zone {
    display: inline-block;
    background: #ddd url('../img/play.svg') center no-repeat;
    background-size: 50px 50px;
    width: 20vw;
    height: 20vw;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ddd;
    cursor: pointer;
}

.drop-zone--drag-enter {
    background-color: #eee;
}

.drop-zone--playing {
    background-image: url('../img/pause.png');
}

.drop-zone--right-drop {
    background-color: lightgreen !important;
}

.drop-zone--wrong-drop {
    background-color: red !important;
}

.gif {
    width: 20vw;
    height: 13vw;
    margin: 0 5px 15px;
    object-fit: cover;
}
