.iframe-container {
    /* text-align: center; */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-sizing: border-box;
}

#game-iframe {
    margin-top: 10%;
}

.unity-game-play-button {
    color: #eef7fa;
    background-color: #164e60;
    border: none;
    border-radius: 5px;
    height: auto;
    padding: 0.4em 0.8em;
    font-size: 120%;
}

.not-playable-alert {
    display: none;
}

.gif-item img {
    padding: 5px 0;
}

.gif-item img {
    width: 100%;
}

.gif-item:hover {
    transform: scale(1.5);
    z-index: 2;
    transition: all .2s ease-in-out;
}

.purpose-list li {
    font-weight: bold;
    font-style: italic;
}

@media (max-width: 991.98px) {
    .unity-game-play-button {
        display: none;
    }

    .not-playable-alert {
        padding-top: 150px;
        display: block;
    }
}