body{
    margin: 0;
    padding: 0;
}
header{
    background-color: #373737;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
}
nav li{
    display: inline;
    margin-right: 20px;
}
nav a{
    text-decoration: none;
    color: #fff;
}
#inicio{
    background-image: url("./Imagenes/Banner_musica.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}
#inicio h2{
    font-size: 36px;
    margin-bottom: 20px;
}
#cursos{
    padding: 20px;
}
#cursos article{
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}
#cursos img, #eventos img{
    width: 100%;
    height: auto;
    border-radius: 5px;
}
#cursos summary{
    font-weight: bold;
    cursor: pointer;
}

#profesores{
    background-color: #f2f2f2;
    padding: 20px;
}

#profesores article{
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}
#profesores img{
    width: 30%;
    height: auto;
    border-radius: 50%;
}
#eventos{
    
    padding: 20px;
}
#eventos article{
    background-color: #f2f2f2;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}
footer{
    background-color: #373737;
    text-align: center;
    padding: 20px;
    color: #fff;
}