@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;

}

:root {
    --cor1: #2B3F30;
    --cor2: #366943;
    --cor3: #34954C;
    --cor4: #9DFFB6;
    --cor5: #C8FFD6;
    --cor6: #D9FFE2;

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

}

a.externo::after {
    content: '\1F517';
}

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

.strong {
    background-color: #23c24b3b;
}

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

header {
    background-image: linear-gradient(to top,#2B3F30,#366943,#34954C,#9DFFB6);
    min-height: 150px;
    text-align: center;
    padding-top: 30px;
    ;
}

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

}

header>p {
    color: white;
    font-weight: 700;
    font-family: var(--fonte-padrao);
    font-size: 1.2em;
    width: 300px;
    margin: auto;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.466);
    text-align: center;
    text-indent: 0px;
    padding-bottom: 50px;
}

nav {
    background-color: var(--cor1);
    color: white;
    padding: 10px;
    box-shadow: 0px 7px 7px rgba(0, 0, 0, 0.459);
}

nav > a {

    color: white;
    text-decoration: none;
    padding: 10px;
    font-weight: bold;
    transition-duration: 0.25s;

}

nav > a:hover {
    background-color: var(--cor3);
    color: var(--cor1);
    border-radius: 5px;
}


main {
    background-color: white;
    max-width: 800px;
    min-width: 250px;
    margin: auto;
    margin-bottom: 30px;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.534);
    border-radius: 0px 0px 10px 10px;
    
}

main h1 {
    font-family: var(--fonte-android);
    font-weight: normal;
    font-size: 1.8em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.466);
    color:#2B3F30;

}

main h2 {
    font-family: var(--fonte-android);
    font-weight: normal;
    background-image: linear-gradient(to right,#9DFFB6,#C8FFD6,#D9FFE2, white 90%);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.466); 
    color: #366943;
}

main img {
    width: 100%;
    display: block;
    margin: auto;
}

main img.pequena {
    width: 50%;

}

div.video {
    background-color: #2B3F30;
    margin: 30px -20px ;
    padding: 20px;
    position: relative;
    padding-bottom: 56.7% ;
}

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



aside {
    background-color: var(--cor6);
    border-radius: 20px;
    padding: 10px;
}

aside > h3 {
    background-color: var(--cor2);
    color: white;
    margin: -10px -10px 0px -10px ;
    border-radius: 10px 10px 0px 0px;

}
aside > ul {
    list-style-position: inside;
    columns: 2;
    list-style-type: '\1F5F8\00A0';

}

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

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

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