/* GENERAL */
body { 
    margin: 0;
    font-family: Arial, sans-serif;
    color: #ffffffbe;
    background-image: url('../assets/img/portada.png'); 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

}

/* HEADER */
header {
    display: flex;
    height: 20px;
    background: #ffc400d6;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    border-bottom: 1px solid rgb(255, 255, 255);
}

header nav a {
    color: rgba(32, 149, 149, 0.797);
    text-decoration: none;
    margin-left: 15px;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 38px;
    width: 40px;
    margin-right: 19px;
}

.portada {
    height: 90vh;          
    background-image: url('../assets/img/portada0.jpg'); 
    
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.portada h1 {
    font-size: 60px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.779);
}

/* SECCIONES */
.seccion {
    padding: 100px 50px;
    border-bottom: 1px solid rgba(0,255,255,0.2);
}

.seccion h2 {
    color: rgba(225, 255, 0, 0.831);
}

/* GALERÍA */
.galeria {
    text-align: center;
    display: flex;
    margin-top: 90px;
}
.img-box {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 45%;
    background: #ffffff6f;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.463);
    border-radius: 12px;
}
.img-box img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}
