@charset "UTF-8";

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

body{
    background-color: rgba(255, 255, 0, 0.385);
}

header{
    display: flex;
    flex-direction: column;
    justify-content: center;

    position: sticky;
    top: 0;
}

picture{
    background-color: #FFFF9D;
}

#logo{
    width: 80px;
    display: flex;
    margin: 10px auto;
    padding: 10px;
}

.icone{
    text-align: center;
    color: white;
    width: 100%;
    padding: 10px;
    margin: auto;

    cursor: pointer;
    background-color: rgb(0, 0, 0);
}

.icone:active{
    color: black;
    background-color: white;
}

nav#itens{
   display: none;
   gap: 10px;
}

nav > a{
    text-align: center;
    font-style: italic;
    font-weight: 600;
    text-decoration: none;
    color: white;

    display: block;
    padding: 15px 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.389);
    background-color: rgb(30, 30, 30);
}

nav > a:hover{
    background-color: #00A058;
}

nav > a:active{
    background-color: #015a32;
}

h1{
    text-align: center;
    font-size: 1.2em;
    width: 100%;
    padding: 15px 20px;
    margin: 20px auto;

    border-radius: 15px;
    background-image: linear-gradient(to right, transparent, rgb(255, 255, 0), rgb(0, 128, 0), transparent);
}

main{
    max-width: 80vw;
    margin: 0 auto 40px auto;
    padding: 20px;

    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.37);
    border: 1px solid rgba(0, 0, 0, 0.215);
    border-radius: 0 0 50px 50px;
    background-color: white;
}

p{
    text-align: justify;
    text-indent: 30px;
    line-height: 1.5em;

    margin: 20px auto;
}

h1::selection, h2::selection, p::selection, li::selection{
    background-color: lightgreen;
}

img{
    width: 90%;
    display: flex;
    flex-direction: column;
    margin: 20px auto 0 auto;
}

figcaption{
    font-size: 14px;
    font-style: italic;
    text-align: center;
    padding: 8px;
}

iframe{
    width: 100%;
    display: block;
    margin: auto;
    background-color: white;
}

article  a {
    color: rgb(50, 50, 50);
    font-style: italic;
    text-decoration: none;
}

article  a:hover{
    color: green;
    text-decoration: underline;
}

article  a:active{
    color: red;
}

section{
    width: 100%;
    height: 90vh;
    margin: auto;
}

h2{
    font-size: 1em;
    padding: 10px;
    border-radius: 15px;
    background-image: linear-gradient(to right, lightgreen, white);
}

li{  
    margin: 0 0 15px 30px;
}

li:nth-child(2n){
    color: #00A058;
}

footer{
    font-size: 16px;
    text-align: center;
    font-style: italic;
    color: white;

    display: flex;
    justify-content: center;
    align-items: center;
    
    height: 40px;
    padding: 10px 0;
    background-color: black;
}

footer > a{
    color: grey;
    margin: 0 5px 0 5px;
    text-decoration: none;
}

footer > a:hover{
    color: yellow;
    text-decoration: underline;
}

footer > a:active{
    color: red;
}


/* Configurações de outraas páginas*/

h2 > a{
    color: black;
    text-decoration: none;
}

h2 > a:hover{
    color: red;
    text-decoration: underline;
}

.person{
    height: auto;
    margin-bottom: 30px;
}

.container{
    width: 70%;
    display: block;
    flex-direction: column;
    padding: 20px;
    margin: 20px auto;
    background-color: rgb(0, 0, 0);
}

.referencias{
    color: black;
    text-decoration: none;
}

.referencias:hover{
    color: yellow;
    padding: 10px;
    text-decoration: underline;

    border-radius: 8px;
    background-color: green;
}

.referencias:active{
    background-color: red;
}

div#setas{
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 20px;

    margin: 40px auto 30px auto;
}

.links{
    color: rgb(0, 0, 0);
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;

    width: 100px;
    display: inline-block;

    padding: 10px 15px;
    border-radius: 15px;

    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.383);
    background-color: yellow;
}


/* Botões de avançar e voltar*/
.links:hover{
    text-decoration: underline;
}

.links:active{
    color: white;
    background-color: green;
}

.direita{
    content: "F138";
}
