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

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;
    width: 30em;
    height: auto;
}

#resaltado{
    color: #53bd8b;
    font-weight: 600;
    text-decoration-line:underline;
}
main{
    flex-direction:column;
    flex-grow: 1;
    display: flex;
    padding: 0.8rem;
    margin: 1em 0;
    align-items: center;
    
}

main p{
    font-weight: 600;
    font-family: 'Dosis',sans-serif;
    font-size: 1.5rem;
    margin-top: 1.5em;
    text-align: justify;
}

.linea{
    width: 100%;
    height: 0.25em;
    background-color: #53bd8b;
    margin-top: 3em;
}

.menu{
    display: flex;
    justify-content: space-between;
    padding-top: 3em;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.menu img{
    width: 10vw;
    
}


@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;}}

