*{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

:root{
    --01: rgb(112, 247, 91);
    --02: rgb(17, 102, 4);
    --03: rgba(104, 214, 87, 0.36);
}

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

body{
    background-color: var(--03);
}

header{
    background-image: linear-gradient(to bottom, var(--01), var(--02) );
    padding: 50px 0px 0px 0px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

h1{
    color: white;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.683);
    font-family: "Bebas Neue", sans-serif;
    font-weight: bolder;
    font-style: normal;
    text-transform: uppercase;
}

nav>a{
    color: white;
    text-decoration: none;
    padding: 10px 15px 10px 15px;
}

nav>a:hover{
    background-color: var(--03);
    transition: 0.5s;
}

nav{
    display: flex;
}

main{
    background-color: white;
    padding: 50px 20px 50px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: auto;
    border-radius: 0px 0px 10px 10px;
    margin-bottom: 30px;
}

section>p{
    line-height: 2em;
}

article>p{
    line-height: 2em;
}

#cabecalho{
    text-align: center;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0px 20px 0px 20px;
}

@font-face {
    font-family: 'android';
    src: url(../fonts/idroid.otf);
}

#cabecalho>p{
    color: white;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.683);
}

section{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

footer{
   text-align: center;
   color: white;
   text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.18);
   padding: 20px 0px 20px 0px;
   background-color: var(--02);
}

img{
    width: 100%;
}

article{
 display: flex;
 flex-direction: column;
 gap: 20px;
}

#list{
    display: flex;
    justify-content: space-around;
}

h3{
    background-color: rgba(1, 202, 1, 0.444);
    font-family: android;
}

h2{
    background-color: rgba(1, 202, 1, 0.444);
    font-family: android;
    white-space: nowrap;
    font-size: 22px;
}