@charset "UTF-8";
@font-face {
    font-family:"projeto/fontes/ID";
    src: url("projeto/fontes/IDroid.otf") format('opentype');
}
@font-face {
    font-family:'projeto/fontes/beb'  ;
    src: url('projeto/fontes/bebas');
}
*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
ul {
    
    display: inline-block;
}
h3{
    font-family: 'projeto/fontes/ID';
    color: darkgreen;
}
body {
    text-align: justify;
    background-color: #404DD2
    
}
body a{ 
color: #1A5C38;
font-weight: bolder;
text-decoration: none;
}
header{
    background-image: linear-gradient(to top, #0d2e1c,#3CD883);
    height: 100%;
    color: white;
    padding: 2px 5px 5px ;
    width: 100%;    
}    
header>h1{
    text-align: center;
    text-shadow: 1px 1px 2px black;
    font-family: 'projeto/fontes/beb';
    
    
}
header p{
    text-align: center;
    text-shadow: 1px 1px 1px black;
    max-width: 500px;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 3m;
}
header>nav a{
    text-align: left;
    color: white;
    text-decoration:none ;
    text-shadow: 1px 1px 0.5px rgba(0, 0, 0, 0.39);
    font-weight: 50;
    margin-left: 10px;
}
header>nav a:hover{
margin-left: 0px;
display: inline;
color:#ffffff ;
padding: 5px;
background-image: linear-gradient(rgba(134, 209, 145, 0.26), rgba(134, 209, 145, 0.315));
border-radius: 2px;
transition-duration: 0.3s;
}
main{
    background-color: white;
    margin: auto ;
    padding: 40px;
    box-shadow: 1px 1px 5px black;
    border-radius: 0px 0px 20px 20px;
    min-width: 280px;
    max-width: 1000px;
    height: 100%;
}
main a:hover{
    font-size: 15px;
    color: blue;
    text-decoration: underline;
}
main p{
    text-indent: 20px;
    margin: 20px 0px;
    line-height: 1.5em;
}
h2{
    color: darkgreen;
    font-family:"projeto/fontes/ID";
    font-size: 24px;
}
h3{
    background-image: linear-gradient(to right, rgba(0, 100, 0, 0.486), rgba(0, 100, 0, 0));
    color: darkgreen;
    text-indent: 20px;
    font-family:"projeto/fontes/ID";
}
img{
    width: 100%;
}
main img.bug{
    max-width: 350px;
    display: block;
    margin: auto;
}
div.video{
    background-color: #1A5C38;
    margin: 0px -20px 30px -20px;
    padding: 20px;
    padding-bottom: 50%;
    position: relative;
}
div.video >iframe{
    position: absolute;
    top: 5%;
    left: 5%;
    height: 90%;
    width: 90%;
}
aside{
    margin-top: 20px;
    background-color: #C5EBD6;
    border-radius: 20px 20px;
    padding-bottom: 20px;
}
aside>p{
    margin-left: 10px;
    margin-right: 10px;
}
aside>ul{
    margin-left: 10px;
    list-style-type: '\2714';
    list-style-position: inside;
    columns: 2;
    
}
aside>h2{
    background-color: #2FA866; 
    border-radius: 20px 20px 0px 0px;
    padding: 10px;
    color: white;
    text-shadow: 1px 1px 2px black;
}
footer{
    background-color: #1A5C38;
    color: white;
    text-shadow: 1px 1px 1px black;
    padding: 1px 0px;
    text-align: center;
    margin-top: 20px;
    width: 100%;
    font-size: 0.8em;
}