
@import url(https://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700);


*{
    box-sizing: border-box;
}


html{ 
    display: block;
}


body{
    display: block;
    margin: 8px;
    font-family: 'PT Sans', sans-serif;
    background-image: url(imagenes/textura.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  
}

#pagina{
    max-width: 80em;
    margin:0 auto;
    
    
}

header{
    background-color: dimgray;
    padding: 1em;

}

header img{
    width: 6em;
    margin-right: 1em;
    float: left;
    border-radius: 50%;

}

header nav ul {
    list-style:none;
    margin: 0;
    padding:0;
}
    
header nav ul li{ 
    display: inline-block;
    margin-right: 1em;
}

header nav ul li a{
    text-decoration: none;
    color: white;
    background-color: black;
    display: block;
    line-height: 2em;
    list-style: none;
    padding: 1em;
    float: left;
    margin-top: 1em;
    font-family: 'PT Sans', sans-serif;

}
    

header nav ul li a:hover{
    background-color: darkorchid;
    border-radius: 1em;
       
}

@media screen and (win-width: 40em)
    
#contenido{
    padding- bottom:0;
    padding-bottom:1em 0;
    overflow: auto;
}
    
main{
    width: calc(70%-1em);
    margin-right: 1em;
    background-color: fuchsia;
    margin-bottom:1em;
    margin-top: 1em;
    color:white;    
    float: left; 
    padding: 1em;
    text-decoration: none;
    font-family: 'PT Sans', sans-serif;
}


h1{ font-style: normal;
    font-weight: 700;
    letter-spacing: 15px;
    margin-bottom: 2em;
    color: white;
    background-color: black;
    padding: 1em;
    text-align: center;
    }

h2{ 
    text-decoration: underline;
    text-align: center;
}

main p{ text-align: center;
    margin: 1em;

}

main ul li{ 
  list-style: none;
    text-align: right;
    margin-left: 4em;
    margin: 0.5em;

}

main ul{ 
    float: left;
}


main figure{ width:25%;
    height: auto;
    float: right;
}

main figure img{ 
    width: 100%;
    overflow:auto; 
    
}
    

main figure{
    margin-right: 11em
}



figcaption{
    font-style: italic;
    text-align: center;
}



aside{
    width: 30%;
    background-color: aquamarine;
    color:black;
    float: left;
    padding: 1em 1em 0 1em;
    margin-top: 1em;
    display: block;
    margin-bottom: 1em;
    font-family: 'PT Sans', sans-serif;

}

    
h3, h4, h5 { text-decoration: underline;
    text-align: center;
    color:darkviolet;
 
}

aside ul li{ font-style: italic;
}


aside p{ text-align: center;
}
    
h5{ color: black
}

h6{
    color:white;
    text-align: left;
}
aside ul li{ 

}


footer{
    background-color: dimgray;
    clear: both;
    overflow: auto;
    padding-left: 1em; 
    display: block;
    color: white;
    font-family: 'PT Sans', sans-serif;
    font-style: italic;
    text-align: center;
    
}


