#fenetre_jeu {
    width: 50%;
    height: 60vh;
    overflow: hidden;
    display: none;
}

#jouer {
    background-color: #8b4300;
    color: #e8df3c;
    font-size: large;
    font-weight: bold;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 20px;
    border: none;
    box-shadow: 3px 3px 5px #55555572;
}

#jouer:hover {
    cursor: pointer;
    box-shadow: 1px 1px 5px #55555572;
}

#commentaire {
    width: 50%;
    display: none;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5vh;
}

#suivant {
    display: none;
    position: absolute;
    bottom: 5vh;
    right: 5vw;
}

@media screen and (max-width : 780px) {
    #fenetre_jeu {
        width: 100%;
    }
}