body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh; /* Ajusta la altura al 100% del viewport */
    background-image: url(img/fondo\ principal.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
   
    
    
}

.interfas {
    text-align: center;
}

h1 {
    color: white;
    background-color:#006c04;
    font-size: 60px;
}

.botones {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    text-decoration: none;
    color: #fff;
    background-color: #006c04; /* Color de fondo más claro */
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.botones:hover {
    background-color: #45a049; /* Cambio de color al pasar el mouse sobre el botón */
}