body {
    font-family: Arial, sans-serif;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
   
    background: linear-gradient(to right, white, lightgray);
    
    /* filter: blur(1px); Ajusta el valor de blur para más o menos difuminado */
}

header {
    text-align: center;
}

main {
    text-align: center;
    margin-top: 100px;
}

p {
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
    margin: 100px auto;
    padding: 20px;
    background-color: #f2f2f2;
    
    width: 80%;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

.logo {
    width:190px; 
    height: auto;
}

footer {
    text-align: center;
    padding: 20px;
    width: 80%;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.1); /* Fondo ligeramente gris para mejor contraste */
}