body {
    margin: 0;
    font-family: Arial, sans-serif; /* Fuente elegante */
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;700&display=swap');

.navbar {
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btnVol {
    
    color: #9000ff; 
    background-color: #6200ea;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
  }

h2 {
    text-align: center; /* Centra el texto horizontalmente */
    font-family: 'Lora', serif; /* Fuente elegante */
    font-size: 2rem; /* Tamaño del texto */
    margin-top: 20px; /* Espaciado superior */
    color: #333; /* Color del texto */
}

/* Importa la fuente desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;700&display=swap');

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.brand {
    font-size: 1.5rem;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

.nav-button {
    background-color: #f4b400;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.nav-button:hover {
    background-color: #e59500;
}

.header {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header h1 {
    font-size: 2.5rem;
    margin: 0;
    color: #333;
}


/*ESTILOS PARA EL CONTENIDO DE NUESTRO TEXTO*/
.content {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.content h2 {
    color: #444;
    font-size: 1.5rem;
    margin-top: 1.5rem;
}

.content p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer {
    text-align: center;
    padding: 1rem;
    background-color: #333;
    color: #fff;
    font-size: 0.9rem;
    margin-top: 2rem;
}
