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

@keyframes pulsate {
    3% {
        box-shadow:
            0 0 25px var(--cor2),
            0 0 25px var(--cor3);
    }
}

@keyframes pulsate2 {
    3% {
        box-shadow:
            0 0 20px var(--cor0),
            0 0 20px var(--cor1);
    }
}


:root {
    --cor0: #afdab7;
    --cor1: #68c479;
    --cor2: #1aaa35;
    --cor3: #076306;
    --cor4: #01380b;
    --cor5: #012007;
    --fonte-padrao: Arial, Verdana, Helvetica, sans-serif;
    --fonte-destaque: 'Bebas Neue', cursive;
    --fonte-android: 'Android', cursive;
}

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

}

body {
    background-image: linear-gradient(180deg, #bddbc3, #ddf7d8);
    font-family: var(--fonte-padrao);
}

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

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

main strong {
    color: #01380b;
    font-weight: bold;
    padding: 2px 6px;
}

main a {
    text-decoration: none;
    color: #01380b;
    background-color: #beddc3;
    font-weight: bold;
    padding: 2px 6px;
}


main a:hover {
    text-decoration: underline;
    color: rgb(181, 235, 156);
    background-color: var(--cor1);
    animation: pulsate2 1s ease-in-out;


}

header {
    background-image: linear-gradient(to bottom, var(--cor3), var(--cor5));
    min-height: 150px;
    text-align: center;
    padding-top: 30px;

}

header > p {
    color: white;
    font-family: var(--fonte-padrao);
    font-size: 1.2em;
    max-width: 620px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 45px;
    margin: auto;
    text-shadow: 3px 3px 1px #000000d0;

}

header h1 {
    color: white;
    font-family: var(--fonte-destaque);
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 3px 3px 1px #000000d2;

}

nav {

    padding: 10px;
    box-shadow: 0px 5px 10px rgba(3, 26, 5, 0.596);

}


nav>a:hover {
    color: var(--cor1);
    background-color: var(--cor3);
    animation: pulsate 1s ease-in-out;
}

nav>a {
    color: #c5dac9;
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;

}

main {
    background-color: rgba(208, 218, 210, 0.89);
    padding: 25px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    min-width: 320px;
    max-width: 920px;
    margin: auto;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.596);
    margin-bottom: 30px;
}

main img {
    width: 100%;
}

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

main h1 {
    color: var(--cor4);
    font-family: var(--fonte-android);
    font-weight: normal;
    font-size: 1.7em;

}

main h2 {
    font-size: 1.3em;
    color: var(--cor5);
    font-family: var(--fonte-android);
    background-image: linear-gradient(to right, var(--cor0), transparent);
    text-indent: 10px;
}

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

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

aside {
    background-color: #9bc7a3;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 3px 3px 7px #01380b5d;
}

aside>h3 {
    background-color: #01380b;
    color: white;
    padding: 10px;
    margin: -10px -10px 0px -10px;
    border-radius: 10px 10px 0px 0px;

}

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

footer {
    background-color: var(--cor5);
    color: #c2ddc7;
    text-align: center;
    font-size: 0.8em;
    padding: 5px;
}

footer a {
    text-decoration: solid;
    font-weight: bold;
    color: rgb(255, 255, 255);

}

footer a:hover {
    text-decoration: underline;
    color: var(--cor1);

}