body {
	background-image: url("../../resources/img/fondo.png");
	background-size: cover;
	background-position: center;
}

h1{
    color: white;
    margin-top:15px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 40%; /* Porcentaje del ancho de la pantalla */
}

.close {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
}