
/*BODY*/

h1 {
    text-align: center;
}

.boton-hacer {
    margin: 10px;
    width: 15em;
    height: 15em;
    align-content: center;
    border: none;
    background-color: #fff;
}

.boton-accion {
    cursor: pointer;
    transition: background-color 0.3s;
    width: 15em;
    height: 15em;
    margin: 10px;
    margin-left: 10px;
    display: flex;
    border: #080808;

}

.boton-accion:hover {
    background-color: #e74c3c;
    /* Nuevo color de fondo al pasar el cursor */
    transform: scale(1.1)
}

.boton-accion img {
    width: 100%;
    height: auto;
}

.botonesAccion {
    text-align: center;
}

.botonesHistorial{
    width: 5em;
    height: 5em;
}
.oculto{
    display: none;
}
.image-container {
    display: block; /* Hace que cada contenedor sea de bloque, ocupando su propia línea */
    margin-bottom: 30px; /* Espaciado entre los contenedores de imagen */
}

@media only screen and (max-width: 600px) {

    .boton-hacer {
        margin: 10px;
        width: 10em;
        height: 10em;
        align-content: center;
        border: none;
        background-color: #fff;
    }

    .boton-accion {
        background-color: #fff;
        /* Color de fondo inicial */
        padding: 1em;
        cursor: pointer;
        transition: background-color 0.3s;
        width: 10em;
        height: 10em;
        margin: 10px;
        margin-left: 10px;
        display: flex;
        border: #080808;
    }
    .botonesHistorial{
        width: 4.3em;
        height: 4.3em;
    }

    
}