body {
    font-family: Arial, sans-serif;
    background: url('../images/sala.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #000000;
    text-align: center;
}

/* Estilos del menú */
.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    padding: 10px 0;
    z-index: 1000;
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu ul li {
    flex-shrink: 0;
}

.menu ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.menu ul li a:hover {
    color: #FFD700;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Contenido */
.content {
    height: 100vh; /* Toda la altura de la ventana */
    display: flex;
    align-items: center; /* Centra verticalmente */
    justify-content: center; /* Centra horizontalmente */
    overflow: hidden; /* Evita desplazamiento */
}

.presentation {
    max-width: 600px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.03);
    border-radius: 10px;
}

.presentation h1 {
    font-size: 35px;
    color: #FFEA00;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .menu ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .menu ul li a {
        font-size: 16px;
    }
}

/*Botón contacto*/
        .contact-button {
            position: fixed;
            bottom: 50px; /* Más alto desde la parte inferior */
            left: 50%;
            transform: translateX(-50%);
            background-color: #AF6AFA; /* Color del botón */
            color: black;
            padding: 15px 25px; /* Botón más grande */
            font-size: 18px; /* Texto más grande */
            font-weight: bold; /* Texto en negrita */
            border: none;
            border-radius: 8px; /* Bordes redondeados */
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1); /* Más sombra para destacar */
            cursor: pointer;
            text-decoration: none;
        }

        .contact-button:hover {
            background-color: #AF29FA; /* Color más oscuro al pasar el mouse */
        }
 
