@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;
}
@font-face {
    font-family: coolvetica;
    src: url(fontes/coolvetica\ condensed\ rg.otf);
    format: 'opentype';
}

:root {
    --cor0: #C5EBD6;
    --cor1: #83E1AD;
    --cor2: #3DDC84;
    --cor3: #2FA866;
    --cor4: #1A5C37;
    --cor5: #063D1E;
}
* {
    margin: 0;
    padding: 0;
}
body {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    background-color: var(--cor0);
}
header {
    background-image: linear-gradient(0deg, var(--cor5), var(--cor3));
    color: white;
    box-shadow: 0px 5px 6px 2px rgba(0, 0, 0, 0.342);
    min-height: 150px;
    padding: 10px;
}
header > h1 {
    font-family: 'Bebas Neue', sans-serif;
    text-shadow: 1px 1px 3px black;
    text-align: center;
    font-size: 40px;
    padding-top: 10px;
    padding-bottom: 20px;
}
header > p {
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px black;
}
header > nav {
    padding-bottom: 5px;
    padding-left: 5px;
    max-height: 20px;
}
header > nav > a {
    padding: 10px;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    transition-duration: 0.5s;
    
}
header > nav > a:hover {
    background-color: var(--cor3);
    border-radius: 5px;
    text-decoration: none;
    
}
main {
    background-color: white;
    text-align: center;
    margin: auto;
    min-width: 300px;
    max-width: 800px;
    border-radius: 0px 0px 10px 10px;
    box-shadow: 0px 2px 5px 2px rgba(0, 0, 0, 0.411);
    line-height: 1.5em;
}
.titulo_principal {
    font-family: android;
    text-align: left;
    margin: 0px 0px 20px 20px;
    color: var(--cor4);
    padding-top: 20px
}
.titulo {
    font-family: android;
    text-align: left;
    margin: 10px 0px 10px 20px;
    color: var(--cor4);
    padding-top: 20px;
}
h2.titulo {
    background-image: linear-gradient(90deg, var(--cor0), transparent);
    border-radius: 20px;
    width: fit-content;
    padding-top: 0px;
    margin-top: 10px;
    padding-left: 8px;
}
.texto {
    text-indent: 20px;
    text-align: justify;
    margin: 10px 20px;
}
a {
    text-decoration: none;
    color: var(--cor4);
    font-weight: bold;
}
a:hover {
    text-decoration: underline;
}
.imagem{
    text-align: center;
    width: 90%;
    max-width: 720px;
}
.imagem_bug {
    margin: auto;
    width: 50%;
    max-width: 350px;
}
.video {
    background-color: var(--cor4);
    position: relative;
    margin-bottom: 20px;
    padding: 20px;
    padding-bottom: 53.8%;
}
.video > iframe {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    border-radius: 10px;
}
.extra {
    margin: 20px 20px 0px 20px;
    background-color: var(--cor0);
    border-radius: 10px 10px 10px 10px;
    text-align: justify;
    font-size: 14px;
}
.extra > h3 {
    text-align: left;
    background-color: var(--cor3);
    padding: 5px;
    color: white;
    border-radius: 10px 10px 0px 0px;
}
ul {
    list-style-type: '\2714\00A0\00A0';
    columns: 2;
    list-style-position: inside;
    text-align: left;
    padding-left: 2%;
}
.texto_extra {
    padding: 10px;
    text-align: justify;
    text-indent: 20px;
}
.ultimo {
    text-indent: 20px;
    margin: 0px 10px;
    padding-bottom: 20px;
}
.extra_fora {
    padding-bottom: 20px;
}
footer {
    margin-top: 20px;
    text-align: center;
    padding: 5px;
    background-color: var(--cor4);
    color: white;
}
.imp {
    font-weight: bold;
    color: white;
}
