@charset "UTF-8";

@font-face {
            font-family: 'droid';
            src: url('idroid.otf') format('opentype');
            font-weight: normal;
            font-style: normal;

            /*
            Tipos de format()
            - opentype(otf)
            - truetype(ttf)
            - embedded-opentype
            - truetype-aat (Apple Advanced Typography)
            - svg
            */
        }

*{
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}
body{
    background-color: rgb(160, 243, 160);
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
    margin: 0px;
    padding: 0px;
}
main{
    display: flex;
    justify-content: center;
    align-items: center;
}
main > div{
    background-color: white;
    width: 95%;
    max-width: 850px;
    border-radius: 5px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.507);
}
main > div > h2{
    text-align: left;
    font-family: "droid";
    margin: 10px 0px 0px 0px;
    padding: 2px 2px 2px 25px;
    color: green;
}
main > div > h3{
    text-align: left;
    font-family: "droid";
    margin: 2px 2px 2px 25px;
    padding: 2px 2px 2px 5px;
    color: green;
    background: linear-gradient(to right, rgb(149, 229, 149), white);
}
p > a{
    color: green;
    text-decoration: none;
    font-weight: bold;
}
p > a:hover{
    text-decoration: none;
    color: rgb(52, 204, 52);
}
header{
    background: linear-gradient(to bottom, rgb(71, 184, 71), rgb(30, 77, 30)  );
    padding: 10px 0px 8px 0px;
    max-height: 20%;
    margin: 0px 0px 30px 0px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.507);
}
header > h1{
    text-align: center;
    color: white;
    margin: 0px;
    padding: 0px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
header > p{
    text-align: center;
    color: white;
    padding: 10px;
    font-size: 0.8em;
}
main > div > p{
    padding: 30px 25px 30px 25px;
    text-align: justify;
}
nav{
    margin: 10px 0px 0px 3px;
    justify-content: right;
}
nav > a{
    color: white;
    text-decoration: none;
    background-color: darkgreen;
    border-radius: 15px;
    font-size: 0.8em;
    padding: 5px 10px 5px 10px;
    margin: 0px;
}
nav > a:hover{
    background-color: green;
    border-radius: 15px;
}
footer{
    background-color: darkgreen;
    color: white;
    margin: 30px 0px 0px 0px;
    padding: 10px 0px 10px 0px;
    text-align: center;
}
footer > p{
    padding: 0px;
    font-size: 1em;
}
main > div > div{
    background-color: darkgreen;
    display: flex;
    width: 100%;
    padding: 20px 20px 20px 20px;
    aspect-ratio: 16/9;
    justify-content: center;
    justify-items: center;
}
main > div > div > iframe{
    width: 100%;
    height: 100%;
}
section{
    margin: 0px 25px 0px 25px;
    padding: 1px 15px 15px 15px;
    background-color: rgb(160, 230, 160);
    border-radius: 0px 0px 10px 10px;
    max-width: 100%;
}
h4{
    background-color: rgb(72, 194, 72);
    margin: 30px 25px 0px 25px;
    color: white;
    padding: 10px;
    border-radius: 10px 10px 0px 0px;
}
section > p{
    margin: 20px 0px 20px 0px;
}
ul{
    list-style-type: none;
}
section > div{
    display: flex;
    gap: 15%;
}
li{
    font-weight: bold;
}
img{
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
footer > p > a{
    color: white;
    text-decoration: solid;
}
footer > p > a:hover{
    color: gray;
    text-decoration: none;
}
