/* SECCION JUGUEMOS */

.main_juguemos{
    background-color: #181D31;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 100px;
}

.contenedor-juego{
    height: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.estilo-contenedor{   
    display: flex;
    flex-direction: row;
}

.paneles{
    justify-content: center;
    margin: 50px;
}

.imagenes{
    justify-content: space-around;
    gap: 10px;
    
}

.panel-vacio{
    width: 250px;
    height: 400px;
    background-color: grey;
    color: #E6DDC4;
    border: solid 2px black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.panel-vacio:hover{
    background-color: rgb(51, 51, 51);
}

.imagen-juego{
    width: 250px;
    height: 400px;
    border: solid 2px black;
}

.boton-reinicio{
    height: 35px;
    width: 200px;
    background-color: #E6DDC4;
    border-radius: 10px;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    box-shadow: 2px 3px #678983;
    margin-top: 50px;
}
.boton-reinicio:active{
    margin-top: 55px;
    box-shadow: 0 0;
}