@charset "UTF-8";

@font-face {
    font-family: 'Idroid'; /* nome que você quiser */
    src: url("fontes/idroid.otf");
}

/* variáveis em CSS */
:root{
    --cor-teste: #1f5c39;
}

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

body{
    margin: 0px;
    background-color: #89e2ae;
}

header{
    background-image: linear-gradient(to bottom, #4adc86, #1f5c39);
}

header h1{
    text-align: center;
    margin-top: 0px;
    padding-top: 10px;
    font: 2.5em "Segoe UI", sans-serif;
    color: white;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.486);
}

header h2{
    text-align: center;
    margin-bottom: 30px;
    color: white;
    font: 1.1em "Segoe UI", sans-serif;
    text-shadow: 1px 1px 1px black;
}

nav{
    padding: 10px;
}

header a{
    text-decoration: none;
    color: white;
    margin-right: 10px;
    padding: 10px;
    font: 600 1em "Segoe UI", sans-serif;
    border-radius: 5px;
    transition-duration: 0.5s;
}

header a:hover{
    background-color: #34c7748f;
}

.content{
    background-color: white;
    margin: auto;
    min-width: 300px;
    max-width: 1000px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.63);
    border-radius: 0px 0px 5px 5px;
}

.content article{
    padding: 15px;
}

.content > article > p{
    text-indent: 20px;
    padding: 10px;
    font: 500 1em "Arial", sans-serif;
    line-height: 2em;
}

.content h1{
    margin: 0px;
    font: 2em "Idroid", display;
    color: #328857;
}

.content a{
    background-color: #70dfa0;
    color: black;
    padding: 3px;
    font-weight: bold;
    text-decoration: none;
}

.content a:hover{
    text-decoration: underline;
}

.content a::after{
    content: '\00A0\1F517';
}
.content h2{
    color: #328857;
    font: 1.5em "Idroid", display;
    background-image: linear-gradient(to right, #54ad7b7c, white);
}

.content img{
    padding: 10px;
    margin: auto;
    display: block;
}

#video{
    background-color: #1f5c39;
    padding: 10px 0px;
}

#video iframe{
    margin: auto;
    display: block;
    width: 90%;

}

#extra{
    background-color: #c7ebd6;
    border-radius: 10px 10px 10px 10px;

}

#extra p{
    padding: 15px;
    margin: 0px;
}

#extra ul{
    margin-left: 20px;
    list-style-type: '\2714\00A0\00A0';
    list-style-position: inside;
    columns: 2;
}

#extra h3{
    color: white;
    background-color: #39a968;
    padding: 10px;
    border-radius: 10px 10px 0px 0px;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.192);
}

footer{
    text-align: center;
    background-color: #1f5c39;
    color: white;
    margin-top: 20px;
    width: 100%;
}

footer p{
    padding: 8px;
    margin: 0px;
}
