* {
    margin: 0px;
    font-family: "Cabin", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: white;
}

.contenedorHeader img {
    height: 60px;
}

.contenedorHeader {
    display: grid;
    grid-template-columns: 1fr 4fr 4fr 1fr;
    
    padding: 5px 0px;
    position: fixed;
    background: #006bb9;
    width: 100%;
    box-sizing: content-box;
    z-index: 5;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: end;

}

.navbar a {
    font-size: 20px;
    margin: 10px;
    color: white;
    text-decoration: none;
}

.titulo,
.video,
#directorio,
#creditos {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    min-height: 650px;


}

.titulo {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    background-image: url('./img/fondo.jpg');
    background-size: cover;
    background-position: center;

}

.overlay {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 200%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    overflow: hidden;
}

.titulo img {
    height: 100%;
    position: absolute;
    z-index: -1;
    object-fit: fill;
}

.titulo h1 {
    color: white;
    text-shadow: 12px 7px 20px black;
    font-size: clamp(1rem, 5vw ,5rem); 
    
}
.contenedor-Titulo-Texto{
    z-index: 2;
    display: flex;
    align-items: center;
    width: 50%;
    background: rgba(0, 217, 255, 0.39);
    backdrop-filter: blur(7px);
    border-radius: 20px;
    border: 1px solid black;
    padding: 40px;
}

.video {
    background: #3A9C95;
    position: relative;
    z-index: 3;
}


#directorio {
    background: #008d52;
}

#creditos {
    background: #123f2a;
}



.letra3 {
    display: block;
    overflow: hidden;
    margin-bottom: 10px;
    font-size: clamp(.8rem, 2vw ,1.5rem); /*font size responsibo dpendiendo del viewport*/
}
@media screen and (max-height: 700px){
    .letra3{
        margin-bottom: 0.5vh;
    }
}

.centered-content {
    text-align: center;
    font-size: 24px;
    
}


footer {
    background: #006bb9;
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
}

footer p,
a {
    color: white;
    text-decoration: none;
}