@charset "UTF-8";

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

@font-face {
    font-family: 'Android';
    src: url('../fontes/idroid.otf') format('opentype');
}
*{
    margin: 0px;
    padding: 0px;
}
:root{
    --cor0: #79E3BA;
    --cor1: #3EC994;
    --cor2: #2F966F;
    --cor3: #2D4A3F;
    --cor4: #174A36;
    --fonte-padrão: arial, verdana, helvetica, sans-serif;
    --fonte-destaque: 'Bebas Neue', sans-serif;
    --fonte-android: 'Android', sans-serif;
}

body{
    background-color: #79E3BA;
    font-family: var(--fonte-padrão);
}
header{
    background-image: linear-gradient( to bottom, var(--cor2), var(--cor4));
    min-height: 150px;
    text-align: center;
    padding: 30px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.541);
}
header>h1{
    font-family: var(--fonte-destaque);
    color: white;
    margin-bottom: 20px;
    font-size: 50px;
    font-weight: normal;
}
header>p{
    color: white;
    font-size: 20px;
}
nav{
    background-color: var(--cor4);
    padding: 10px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.507);
}
nav>a{
    text-decoration: none;
    color: white;
    margin-left: 10px;
    margin-right: 10px;
}
nav>a:hover{
    text-decoration: underline;
    color: greenyellow;
    transition-duration: 0.5s;
}
main{ 
    background-color: white;
    min-width: 300px;
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.514);
    margin-bottom: 20px;
    border-radius: 0px 0px 10px 10px;
}
main img{
    width: 100%;
}
main img.pequena{
    max-width: 300px;
    display: block;
    margin: auto;
}
main>article>h1{
    font-family: var(--fonte-android);
    font-size: 30px;
    color:var(--cor4);
    background-image: linear-gradient( to right, rgba(0, 128, 0, 0.493),rgba(255, 255, 255, 0.151));
    font-weight: normal;
    text-indent: 10px;
}

main>article>h2{
    font-family: 'Android';
    font-family: var(--fonte-android);
    font-size: 25px;
    color:var(--cor3);
    background-image: linear-gradient( to right, rgba(0, 128, 0, 0.493),rgba(255, 255, 255, 0.151));
    text-indent: 10px;
    font-weight: normal;
}
main>article>p{
    margin: 15px 0px;
    text-align: justify;
    text-indent: 30px;
    line-height: 35px;
    font-size: 18px;
    font-weight: 200;
}
main>article>aside>p{
    margin: 15px 0px;
    text-align: justify;
    text-indent: 30px;
    line-height: 35px;
    font-size: 18px;
    font-weight: 200;
}
strong{
    color: #2B400B;
}
main a{
    text-decoration: none;
    color: #174A36;
    background-color: #79E3BA;
    border-radius: 5px;
    padding: 1px 1px;
    font-weight: bold;
}
main a:hover{
    background-color: yellowgreen;
}
main a:active{
    background-color: red;
    color: black;
}
main a::after{
    content: '\00A0\1F517';
}
div.video{
    background-color: #174A36;
    margin: 20px -20px;
    padding-bottom: 58.5%;
    position: relative;
}
div.video>iframe{
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
}
aside{
    background-color: var(--cor0);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 1px 1px 5px black;
}
aside>h3{
    background-color: #2D4A3F;
    color: white;
    padding: 10px;
    margin:  -10px -10px 0px -10px;
    border-radius: 10px 10px 0px 0px;
    text-shadow: 3px 3px 5px black;
}
aside>ul{
    columns: 2;
    list-style-position: inside;
    list-style-type: '\2714\00A0\00A0';
}
footer{
    background-color: var(--cor3);
    font-size: 25px;
    text-align: center;
    font-family: var(--fonte-destaque);
}
footer>a{
    color: greenyellow;
    text-decoration: none;
}
footer>a:hover{
    color: rgb(77, 0, 121);
}
abbr{
    text-decoration: underline;
}
