


body {
    font-family: Arial, sans-serif;
    text-align: center;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 43%;
    
}

.close {
    color: #aaa;
    float: right;
    font-size: 30px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.cuadrado1{
    width: 500px; /* Ancho del contenedor */
    padding: 20px; /* Relleno interno del contenedor */
    border: 4px solid #228B22; /* Borde del contenedor */
    border-radius: 10px;
    text-align: center; 
}


.cuadrado2{
    width: 500px; /* Ancho del contenedor */
    padding: 20px; /* Relleno interno del contenedor */
    border: 4px solid #228B22; /* Borde del contenedor */
    border-radius: 10px;
    text-align: center; 
    margin-bottom: 10px;
}

.boton-vino {
    background-color: rgb(115, 173, 52); /* Vino */
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}
.boton-vino:hover {
    background-color: #228B22; /* Vino más oscuro al pasar el cursor */
}