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


:root {
    --corFundoeFonteAndroid: #2cb67d;
    --corFundoMain: #fffffe; 
    --corh1headereAsideh3: #16161a;
    --corLinkseNegrito: #7f5af0;
    --corBackgroudColorLinks: #d1d1e9;

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

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

body {
    background-color: #2cb67d;
    font-family:  Arial, Helvetica, sans-serif;
}

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

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

header {
    background-color: #fffffe;
    min-height: 150px;
    padding-top: 30px;
}

header > p {
    color: #16161a;
    text-align: center;
    text-shadow: 0px 1px rgba(0, 0, 0, 0.37);
    font-family: var(--fonte-padrao);
    font-size: 1.2em;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 30px;
}

header > h1 {
    color: #16161a;
    font-family: var(--fonte-destaque);
    font-size: 3em;
    font-weight: normal;
    text-align: center;
    margin-bottom: 20px;
}

nav {
    background-color: #fffffe;
    color: white;
    padding: 10px;
    text-align: center;
}

nav > a {
    text-decoration: none;
    color: #7f5af0;
    padding: 18px;
    border-radius: 5px;
    font-weight: bold;
}

nav > a:hover {
    background-color: #d1d1e9;
    transition-duration: .5s;
}

main {
    background-color: #fffffe;
    margin: auto;
    margin-bottom: 30px;
    padding: 20px;
    min-width: 300px;
    max-width: 1000px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

main > article > h1 {
    color: #2cb67d;
    font-family: 'android';
    font-weight: normal;
    font-size: 1.7em;
}

main h2 {
    font-family: 'android';
    font-weight: normal;
    color: #2cb67d;
    background-image: linear-gradient(to right, transparent, #2cb67d);
}

main img {
    width: 100%;
}

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

main strong {
    color: #7f5af0;
}

main a {
    text-decoration: none;
    color: #7f5af0;
    font-weight: bold;
    background-color: #d1d1e9;
    padding: 2px 5px;
}

main a:hover {
    text-decoration: underline;

}

div.video {
    background-color: #fffffe;
    padding: 20px;
    margin: 0px -20px 30px -20px;
    padding-bottom: 56.5%;
    position: relative;

}

div.video > iframe {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.13);
}

aside {
    background-color: #2cb67d;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.24);
}

aside > h3 {
    background-color: #16161a;
    color:white;
    padding: 10px;
    margin: -10px -10px 0px -10px;
    border-radius: 10px 10px 0px 0px;
}

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

footer {
    background-color: #fffffe;
    text-align: center;
    padding: 5px;
    font-size: 0.8em;
}

footer a {
    text-decoration: none;
    font-weight: bold;
    color: #16161a;
    color: #7f5af0;
    background-color: #d1d1e9;
    padding: 2px 5px;
}

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