
body{
    font-family: Arial, Helvetica, sans-serif;
    margin:0;
    background:#f4f4f4;
}

/* ENCABEZADO */

header{
    background:#8B0000;
    color:white;
    text-align:center;
    padding:15px;
}

.encabezado{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
}

.logo{
    width:90px;
    border-radius:50%;
}

header h1{
    font-size:40px;
}


/* MENU */

nav{
    margin-top:20px;
}

nav a{
    text-decoration:none;
    color:white;
    margin:10px;
    font-size:18px;
    font-weight:bold;
}

nav a:hover{
    color:yellow;
    text-decoration:none;
    color:white;
    margin:0 15px;
    font-size:16px;
    font-weight:bold;

}

/* SECCIONES */

.seccion{
    max-width:1000px;
    margin:auto;
    padding:40px 20px;
}

.contenido_temas{
    display:flex;
    align-items:center;
    justify-content:space-around;
    gap:40px;
}

.texto_parrafo{
    width:50%;
}

 p{line-height:1.6;
    text-align:justify;
 }

.texto_parrafo h2{
    color:#570000;
    font-size:30px;
}

.texto_parrafo h3{
    color:#070606;
    font-size:30px;
}

.contenido_temas img{
    width:350px;
    border-radius:10px;
}

/* GALERIA */

#galeria{
    text-align:center;
    padding:40px;
}

.galeria{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.galeria img{
    width:250px;
    border-radius:10px;
    transition:transform 0.3s;
}

.galeria img:hover{
    transform:scale(1.1);
}

#huapangos{
text-align:center;
padding:40px;
}

.contenedor-musica{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:30px;
}

.tarjeta{
background:white;
width:250px;
padding:20px;
border-radius:10px;
box-shadow:0px 4px 10px rgba(0,0,0,0.2);
transition:transform 0.3s;
}

.tarjeta:hover{
transform:scale(1.05);
}

.tarjeta h3{
color:#8B0000;
}

.tarjeta a{
display:inline-block;
margin-top:10px;
padding:8px 15px;
background:#8B0000;
color:white;
text-decoration:none;
border-radius:5px;
}


/* FOOTER */

footer{
    background:#222;
    color:white;
    text-align:center;
    padding:20px;
}

