@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

@font-face {
    font-family: 'idroid';
    src: url(fontes/idroid.otf) format('opentype');
}

:root {
    --fonte-destaque: 'Bebas Neue', cursive;
}

* {
    margin: 0px;
    padding: 0px;
}

body {
    background-color: rgb(96, 228, 173);
    font-family: Arial, Helvetica, sans-serif;
}

header {
    background-image: linear-gradient(rgb(96, 228, 173), green);
    min-height: 150px;
    padding-top: 40px;
    width: auto;
    text-align: center;
}

header > h1 {
    font-family: var(--fonte-destaque);
    font-weight: 100;
    font-size: 3em;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.623);
    margin-bottom: 20px;    
}

header > p {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 100;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.623);
    max-width: 600px;
    margin: auto;
    padding-bottom: 30px;
    padding-left: 10px;
    padding-right: 10px;     
}

nav {
    padding: 10px;
    box-shadow: 0px 7px 9px rgba(0, 0, 0, 0.164);
    background-color:  green;
}

nav > a {
    text-decoration: none;
    font-weight: 600;
    color: white;
    padding: 10px;
    border-radius: 5px;
    transition-duration: .4s;
}

nav > a:hover{
    background-color: rgb(76, 168, 76);
    color: rgb(18, 71, 18);
}

a.externo::after {
    content: '\0020\1F517';
}

main {
    background-color: white;    
    min-width: 300px;
    max-width: 1000px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.253);
    border-radius: 0px 0px 25px 25px;
    padding: 20px;
    margin: auto;
    margin-bottom: 30px;  
}

main p {
    margin: 15px 0px;
    text-align: justify;
    text-indent: 30px;
    line-height: 2em;
    font-size: 1em;
}
main strong {
    color: green;    
    padding: 2px 5px;
}

main a {
    text-decoration: none;
    font-weight: bold;
    padding: 2px 5px;
    background-color: rgba(194, 241, 194, 0.7);
    color: rgb(4, 54, 4);
}

main a:hover {
    color: rgb(61, 122, 61);
}

main img {
    width: 100%;
}

main img.pequeno{
    max-width: 350px;
    margin: auto;
    display: block;
}

main h1 {
    font-family: idroid;
    font-size: 1.8em;
    color: rgb(9, 77, 9);
    font-weight: normal;
}

main h2 {
    font-family: idroid;
    font-weight: normal;
    font-size: 1.5em;
    color: rgb(9, 77, 9);
    background-image: linear-gradient(to right, rgba(0, 128, 0, 0.3), transparent);
    text-indent: 8px;
}

div.video {
    background-color: rgb(0, 43, 0);
    margin-bottom: 30px;
    margin: 0px -20px 30px -20px;
    padding: 20px;
    padding-bottom: 59%;
    position: relative;
}

div.video > iframe {
    position: absolute;
    top: 5%;
    left: 5%;
    height: 90%;
    width: 90%;
}

aside {
    background-color: rgb(207, 235, 199);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.205);
}

aside > h3 {
    background-color: rgb(57, 105, 57);;
    color: white;
    padding: 10px;
    margin: -10px -10px 0px -10px;
    border-radius: 10px 10px 0px 0px;
}

aside > ul {
    list-style-type: '\2714\0020\0020';
    list-style-position: inside;
    columns: 2;
}

abbr {
    text-decoration: none;
}

footer {
    background-color: rgb(1, 20, 1);
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: bolder;
    color: white;
    padding: 5px;
    font-size: 0.8em;   
}

footer > a {
    text-decoration: none;    
    color: white;
}

footer > a:hover {
    color: rgb(234, 13, 241);
}