*{
    font-family: 'Dosis', sans-serif;
    text-decoration: none; 
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
}

header{
    background-color:#53bd8b;
    height: 7rem;
    display: flex;
    justify-content: center;
}

header img{
    display: flex;
    height: auto;
    width: 29em;
}

#select{
    color: #735580;
    font-weight: 600;
    text-decoration-line:underline;
    letter-spacing: 0.05em;
}

main{
    flex-grow: 1;
    margin: 1em 0;
    
}

.titulo{
    align-items: center;
    display: flex;
    margin-bottom: 2em;
    justify-content: center;
    height: 8em;
    margin-top: 4em;
    text-align: center;
}

.titulo img {
    width: 12em;
    margin: 1.5em;
}

figcaption{
    font-weight: 600;
    font-size: 1.5em;
}

.listado{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    align-content: flex-start;
    margin-top: 5em;
}

.listado article {
    background-color: #a67db7;
    color: white;
    margin-top:1.5em;
}

.listado article h3{
    display: flex;
    align-items: center;
    font-size: 1.5em;
    flex-grow: 1;
    height: 3em; 
    letter-spacing: 0.05em;
    justify-content: center;
    text-align: center;
    letter-spacing: 0.05em;
}

.despliegue {
    padding: 2em;
}
.despliegue ul li{
    list-style: circle;
    font-size: 1em;
    font-weight: 600;
    margin-left: 1.1em;
}
p{
    font-size:1em;
    letter-spacing: 0.05em;
    
}

footer{
    justify-content: space-between;
    box-sizing: border-box;
    background-color:#238f6c;
    
}
footer ul{
    justify-content: space-between;
    display: flex;
    flex-direction:row;
    height: 6em;
}

footer ul li{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    
}

.logofooter{
    max-height: 4em;
}


@media (max-width: 500px)
{header {font-size: 0.7em;}}


@media (max-width: 900px)
{main h1 {font-size: 2em;}}

@media (max-width: 500px)
{main h1 {font-size: 1.8em;}}



