*:active {
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color:dimgrey;
    margin: 37px;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Контейнер по центру */
#controls-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid yellow;
    background-color:darkred;
    border-radius: 16px;
    padding: 5px;

    width: 70%;
    height: 90%;
}
/*#IM {
    position: fixed;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    margin-right: -50%;
    transform: translate(-50%, -60%);
}*/
#IM {
    position: relative;
    transform: none;
    top: auto;
    left: auto;
}
#IM {
    max-width: 95%;
    text-align: center;
}


.image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.image#continue {
    position: fixed;
    top: 65%;
    left: 50%;
    right: auto;
    bottom: auto;
    margin-right: -50%;
    transform: translate(-50%, -60%);
}
h2 {
    top: 50px;
    position: relative;
    font-size: 25px;
    text-align: justify;
    border: 3px solid red;
    background-color:yellow;
    border-radius: 16px;
    padding: 5px;
}
/* Анимация при нажатии */
#play-button img:active {
    transform: scale(0.95);
}
@media (max-width: 600px) {
    #controls-container {
        width: 90%;
        height: auto;
        padding: 10px;
    }
}


    