@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-weight: normal;
}

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

}

/*Raiz da arvore do documento
tudo que definir dentro servira para o documento inteiro
podendo criar variaveis dentro deste seletor*/
 :root {
    --cor0: #83e1ad;
    --cor1: #3ddc84;
    --cor2: #2fa866;
    --cor3: #1a5c37;
    --cor4: #063d1e ;
    --cor5: #ebe5c5;

    --fonte-padrao: Arial, Verdana, Helvetica, sans-serif;
    --fonte-destaque: "Bebas Neue", sans-serif;
    --fonte-android: 'Android';
 }


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

 main strong {
   color: var(--cor3);
   font-weight: bolder;
 }

main a {
   text-decoration: none;
   font-weight: bold;
   color: #063d1e;
   background-color: #83e1ad;
   padding: 2px 6px;
}

main a:hover {
   text-decoration: underline;
   color: var(--cor2);
}

 body {
    background-color: var(--cor5);
    font-family: var(--fonte-padrao);
}

header {
    background-image: linear-gradient(to bottom, var(--cor2), var(--cor3) );
    min-height: 150px;
    text-align: center;
    padding-top: 40px;
}

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

 header p {
    color: white;
    font-family: var(--fonte-destaque);
    max-width: 600px;
    font-size: 1.2em;
    margin: auto;
    margin-bottom: 20px;
    padding-right: 10px;
    padding-left: 10px;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.502);
 }

 nav {
   display: flex;
    padding: 10px;
    box-shadow: 0px 7px 9px rgba(0, 0, 0, 0.418);
    justify-content: flex-start;
 }

 nav a {
   color: var(--cor0);
   padding: 10px;
   margin: 5px;
   text-decoration: none;
   font-weight: bold;
   border-radius: 5px;
   transition-duration: 0.4s;
 }

 nav a:hover {
   background-color: var(--cor1);
   color: var(--cor3);
 }

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

 main h1 {
    color: var(--cor4);
    font-family: var(--fonte-android);
    font-weight: normal;
    font-size: 1.8em;
 }
 
 .video {
   background-color: var(--cor4);
   margin: 0px -20px 30px -20px;
   padding: 20px;
   position: relative;
   padding-bottom: 56.5%;
 }

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

 main h2 {
    font-family: var(--fonte-android);
    color: var(--cor3);
    font-size: 1.3em;
    background-image: linear-gradient(to right, var(--cor2), transparent);
    text-indent: 2em;
    font-weight: normal;
 }

 main img {
   width: 100%;
 }

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

 aside {
   background-color: var(--cor0);
   padding: 10px;
   border-radius: 10px;
   box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.504);
 }

 /*este seletor abiaxo serve para colocar as bolinhas para dentro da caixa que esta sendo criada.*/
 aside ul {
   list-style-position: inside;
   columns: 2;
   list-style-type: '\2714\00A0\00A0';
 }

 aside h3 {
   background-color: var(--cor3);
   color: white;
   padding: 10px;
   margin: -10px -10px 0px -10px;
   border-radius: 10px 10px 0px 0px;
 }

 /*::after serve para dixer qual vai ser a alteração dele depois de algum acontecimento do tipo clique ou rolagem como exemplos*/
 a.externo::after {
   content: '\00A0\1F517';
 }

 footer {
    background-color: var(--cor4);
    color: white;
    text-align: center;
    font-size: 0.8em;
    padding: 5px;
 }

 footer a {
   color: white;
   font-weight: bolder;
   text-decoration: none;
 }

 footer a:hover {
   text-decoration: underline;
   color: var(--cor0);
 }