* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

#video-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: #fff;
}

.title {
    font-size: 4rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff; /* Color por defecto para el resto del texto */
    transition: color 0.3s ease;
}

.title .ia {
    text-transform: lowercase; /* Mantiene el texto en minúsculas */
    color: #444; /* Cambia a gris oscuro */
}

.title:hover .ia {
    color: #666; /* Cambia el color en hover, si quieres un efecto */
}

.title:hover {
    color: #cccccc;
}


.menu {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.menu a {
    color: #ccc;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: #fff;
}

/* Responsividad */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }

    .menu a {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }

    .menu {
        flex-direction: column;
        gap: 10px;
    }
}
