@charset "utf-8"
* {
    box-sizing: border-box;
    color: black;
}

    
   body {
    background-color: antiquewhite;
    width: 100%;
    display: flex;
    flex-direction: column
}
header {
    border-radius: 2em;
    background-color:burlywood; 
    padding: .1em .2em;
    margin: .5em .5em .5em .5em;
    width: 100%;
    
    display: flex;
    flex-direction: row;
    justify-content:space-between
}

body header a {   
    display: flex;
    flex-direction: row;
   justify-content: space-between;
    align-content: flex-start;
    align-self: flex-start
}


body header nav ul {
    list-style: none;
    border-radius: 1em;
    padding: .1em;
    margin: 1em 0em 1em ;
    box-sizing: border-box;
    font-size: 1em;
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    align-content: flex-end;
    align-self: flex-end;
    font-family: sans-serif
}


body header nav ul li a{
    width: 75%;
    border-radius: 1em;
    color:burlywood;
    background-color:antiquewhite;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    font-size: 0.9em;
   margin: 1em  .5em;
    padding: 1em .5em;

    }

body header nav ul li a:hover:not(.active) {
    background-color:chocolate;
}


a {
    color: crimson
}



main {
    width: 70%;
    margin: .2em;
    padding: .2em
}

   img {
    border-radius: 4em;
    display: flex;
    flex-direction: column;
    justify-content:flex-start
    
}

#titulo {
    width: 70%;
    color: brown;
    font-family: sans-serif;
    font-size: .4em;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content:flex-start;
    margin: 1em  .5em;
    padding: 1em .5em;
    font-size: 1.7em;
  
    
}

        

.subt2 {
    width: 70%;
    color: brown;
    font-family: sans-serif;
    font-size: .4em;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content:flex-start;
    margin: 1em  .5em;
    padding: 1em .5em;
    font-size: 1.5em;

    
}
    

a {
    color: darkred
    }
    
.title4 { 
    width: 70%;
    color: brown;
    font-family: sans-serif;
    font-size: .4em;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content:flex-start;
    margin: 1em  .5em;
    padding: 1em .5em;
    font-size: 1.2em;

    
}
    
.texto2 {
    width: 70%;
    color: black;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    justify-content:flex-start;
    font-size: 1em;
    padding: .1em .5em .5em 2em;
    margin: .1em .5em .5em 1.5em;
    
    
}
#dgpc{
    display: flex;
    flex-direction: row;
    align-self: flex-start;
    padding: .1em .1em .1em .1em;
}





.datos {
    width: 70%;
    color: black;
    font-family: sans-serif;
    display: flex;
    align-items:flex-start;
    flex-direction: column;
    text-align:left
    margin: 1em  .5em;
    padding: 1em .5em;
}

main section h3{
    width: 70%;
    color: brown;
    font-family: sans-serif;
    display: flex;
    align-items:flex-start;
    flex-direction: column;
    text-align:left;
    font-size: 1.5em;
            margin: 1em  .5em;
    padding: 1em .5em;
}
.pertenencia {
    color: black;
    font-family: sans-serif;
    font-size: .9em;
    text-align:left;
    display: flex;
    flex-direction: row;
    justify-content:space-between;
            margin: 1em  .5em;
    padding: 1em .5em;
}

.subt { 
    width: 70%;
    color: brown;
    font-family: sans-serif;
    font-size: .4em;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content:flex-start;
    margin: 1em  .5em;
    padding: 1em .5em;
    font-size: 2em;

    
}


 
footer > * {
    color:black;
    font-size: .7em;
    margin: 1em  .5em;
    padding: 1em .5em;
    background-color:burlywood;
    font-family: sans-serif
}

@media (min-width:30em) {
    body{
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
    }
    
    header {
        width: auto;
    }    
    
    .body-media{
        font-size-adjust: auto; 
    }
    
    .body-media img{
        width: 50%;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    
   