/* Estilos generales */
/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.107);
}

header {
    background-image: url(../img/celebracio.jpg);
    background-size: cover;
    color: rgba(255, 255, 255);
    text-align: center;
    padding: 100px 0;


}

header h1 {
    font-size: 36px;
}

header h2 {
    font-size: 24px;
    margin-top: 20px;
}

/* Estilos para las secciones */
section {
    padding: 50px 0;
    text-align: center;
}

section:nth-child(odd) {
    background-color: #007bff;
    color: white;
}

section:nth-child(even) {
    background-color: #4caf50;
    color: white;
}

section h2 {
    font-size: 28px;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    font-size: 18px;
    margin: 10px 0;
}

/* Estilos para el formulario de contacto */
form {
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
}

label {
    font-weight: bold;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #ff9800;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: block; 
    margin: 0 auto;
}

button:hover {
    background-color: #e64100;
}

/* Estilos para el pie de página */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer li {
    display: inline;
    margin: 0 10px;
    text-decoration: none;
    color: #ff9800;
}

footer p {
    text-decoration: none;
    color: #ff9800;
}
