@charset "UTF-8";
@font-face {
    font-family:android ;
    src: url(fontes/idroid.otf);
}
:root{
    --fonte: Arial,verdana,helvetica,sans-serif;
}
*{
    margin: 0px;
    padding: 0px;
}
body{
    background-color: rgba(127, 255, 212, 0.527);
    font-family:var(--fonte);
}
header{
    min-height: 150px;
    background-image: linear-gradient(to right, #275ca1,#5998EB) ;
    color: aliceblue;
    text-align: center;
    padding-top: 40px;
    
}
main{
    background-color: white;
    min-width: 300px;
    max-width: 1000px;
    padding: 20px;
    margin: auto;
    margin-bottom: 30px;
    box-shadow: 0px 0px 10px black;
    border-radius: 0px 0px 10px 10px;
}
div.video{
    
    margin: 0px -20px 30px -20px;
    padding: 20px;
    padding-bottom: 50%;
    position: relative;
}
div.video > iframe {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
}
main p {
    text-align: justify;
    margin: 15px 0px;
    
}
strong{
    color: #5998EB;
}
main a {
    color: #5998EB;
    background-color: aqua;
    font-weight: bold;
    text-decoration:none;
}
main a:hover{
    text-decoration: underline;
    background-color: aquamarine;
}
nav{
    text-align:start;
    background-color: #3f88e7;
    padding: 10px;
}
nav > a{
    color: aliceblue;
    text-decoration: none;
    margin: auto;
    padding: 10px;
    font-weight: bold;
    border-radius: 5px;
    transition-duration: .5s;

}
nav > a:hover{
    background-color: #5998EB;
    text-decoration: underline;
    color: black;
}
h1{
   font-family: android; 
   font-weight: normal;
}
h2{
    font-family: android;
    background-color: aqua;
    font-weight: normal;
}
h1#principal{
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    margin-bottom: 20px;
    text-shadow: 2px 2px 0px black;
}
footer{
    background-color: black;
    color: azure;
    text-align: center;
    margin: 10px;
}
article{
    background-color: white;
    
}
img{
     width: 100%;
}
img.pequena{
    max-width: 350px;
    display: block;
    margin: auto;
}
aside{
    background-color: aquamarine;
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
}
h3{
    text-align: center;
    background-color: #5998EB;
    margin: -20px -20px 10px -20px;
    border-radius: 10px 10px 0px 0px ;
}
aside > p {
    margin: 15px 0px;
    text-align: justify;
}