@charset "utf8";

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

:root{
    --cor0:#c5ebd6;
    --cor1:#82e1ad;
    --cor2:#3ddc84;
    --cor3:#2fa866;
    --cor4:#1a5c37;
    --cor5:#063d1e;
    
    --font-padrao:Arial,Verdana, helvetica, sans-serif;
    --font-destaque:"Bebas Neue", "cursive";
}
*{
    margin:0px;
    padding: 0px;
}
html{
    scroll-behavior: smooth;
}
body{
    background-color:var(--cor0) ;
    font-family: var(--font-padrao);
}
header{
    background-image:linear-gradient(to bottom, var(--cor3),var(--cor5)) ;
    text-align: center;
    height: 150px;
    padding-top: 10px;      
}
header > h1{   
    font-family:var(--font-destaque);
    margin-bottom: 0px;
    color: antiquewhite;
    font-size: 3.4em;
    text-shadow:2PX 2PX 2PX rgba(25, 24, 22, 0.578);
    padding: 20px;   
}
header > p{
    font-family: var(--font-padrao);
    color: antiquewhite;
    max-width: 600px;
    margin: auto;
    padding-left: 10px;
    padding-right: 10px;
    text-shadow:2PX 2PX 2PX rgba(25, 24, 22, 0.578);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: .8em;   
}
#burguer{
    display:none;
}
nav{
    background-color: var(--cor5);
    padding-bottom: 20px;
    padding-left: 15px;  
}
nav > a{
    font-family: var(--font-padrao);
    text-decoration-line: underline;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 5px;
    padding-bottom: 5PX;
    color: antiquewhite;
    margin: auto;
    font-size: .8em;
    text-shadow:2PX 2PX 2PX rgba(25, 24, 22, 0.578) ;
}
nav > a:hover{
    box-shadow: 1px 1px 3px var(--cor2);
    transition-duration: 0.3S;
    border-radius: 5px;   
}
main{
    background-color: antiquewhite;
    padding: 10px;
    margin: auto;
    max-width: 1000px;
    min-width: 350px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.462);
    margin-bottom: 30px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
img{
    width: 100%;
}
#pq{
    max-width: 350PX;
    margin: auto;
    display: block;
}
.autora{
    border-radius: 10px;
    box-shadow:3px 3px 3px rgba(0, 0, 0, 0.429); 
}
article{
    padding: 10px;
    border-radius: 10px;
}
main>article> h1{
    color: var(--cor5);
    font-family: var(--font-destaque);
    font-weight: bolder;
    font-size: 2em;
    background-image: linear-gradient(to right, var(--cor1), transparent);
}
main h2{
    font-family: var(--font-destaque);
    color: var(--cor5);
    background-image: linear-gradient(to right, var(--cor1), transparent);
}
main p{
    margin: 10px 0px;
    text-align: justify;
    text-indent: 20px;
    line-height: 1.5em;
}
main strong{
    color: var(--cor5);
    text-shadow: 2px 2 px 2px rgba(0, 0, 0, 0.429);
}
main a {
    text-decoration: none;
    font-style: italic ;
    font-weight: 500;
}
main a:hover{
    text-decoration: underline;
    font-weight: bold; 
}
#video{
    background-color: var(--cor5);
    padding: 0px;
    margin: 0px -20px 20px -20px;
    position: relative;
    padding-bottom: 58%;
}
#video > iframe{
    position: absolute;
    top:5% ;
    left: 5%;
    width: 90%;
    height: 90%;
    border-radius: 10px;
    box-shadow: 3px 3px 3px rgba(39, 38, 38, 0.503); 
}
aside{
    background-color:var(--cor1);
    box-shadow: 3px 3px 3px rgba(39, 38, 38, 0.503);
    padding: 10px;
    border-radius: 10px;
}
aside>ul{
    list-style-position: inside;
    columns: 2;
    list-style-type: "\2713\00A0\00A0";/*00A0=spaço apos o simbolo*/   
}
aside h3{
    background-color: var(--cor4);
    color:antiquewhite;
    margin: -10px -10px 0px -10px;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-shadow: 2px 2 px 2px rgba(0, 0, 0, 0.429); ;
}
footer{
    background-color: var(--cor5);
    color: rgba(255, 255, 255, 0.573);
    height: 100px;
    padding: 20px;
    text-align: center;   
}
footer  a{
    color: antiquewhite;   
    padding: 5px;  
    border: 20px;
    font-size: .8em;
}
footer a:hover{
    box-shadow: 0px 2px 3px var(--cor2);
    transition-duration: 0.3S;
    padding: 5px;
    border-radius: 5px;
}
footer ul{
    list-style-position: inside;
    border: 10px;
    columns: 2;
    width: 300px;
    width: auto;
}
footer p{
    font-size: .8em;
    font-style: italic;
    padding-top: 20px;
}
footer h4{
    font-size: 1.1em;
    color: antiquewhite;
    border-bottom: 20px;
    padding: 10px;
}
#topo{
    text-decoration: none;
    padding: 10px;
    position: fixed;
    background-color: rgba(255, 0, 0, 0.264);
    right: 20px;
    bottom: 120px;
    color: antiquewhite;
    font-size: 1.2em;
    border-radius: 30px;
}
#topo:hover{
    box-shadow: 2px 2px 1px antiquewhite;
    background-color: red;
    border: rgba(254, 254, 248, 0.652);
    transition-duration: .3s;  
}
@media only screen and (max-width:600px) {
    body{
        width: 100%;
    }
    header > h1{   
        font-size: 2.4em;
        text-shadow:2PX 2PX 2PX rgba(25, 24, 22, 0.578);
        padding: 20px;   
    }
    #opcoes{
        display: none;
    }
    #opcoes{
        display: flexbox;
        align-items: flex-start;
        text-align: center;
    }
    #opcoes a{
        text-align: center;
        display: block;
        padding-left: -10px;
    }
    #burguer{
        display:block;
        background-color: var(--cor5);
        color: var(--cor0);
        text-align: left;
        padding-left: 20px;
        padding-bottom: 20px;
        font-size: 1.5rem;
    }
    #burguer:hover{
        color: antiquewhite;
        text-shadow:1px 1px 4px white;
        cursor: pointer;
    }

    
}