*{
    margin: 0;
    padding: 0;
}
body{
    background-color: olive;
    color: burlywood;
}
header{
    background-color: black;
    height: 10vh;
}
footer{
    color: rgb(226, 38, 13);
    text-align: right;
    font-size: 16px;
    text-transform: capitalize;
}
main{
    text-align: justify;
    margin-left: 5%;
    margin-right: 5%;
}
h1{
    text-align: center;
    padding: 10px;
    color: azure;
    text-decoration: underline;
    font-size: 36px;
    font-family:Arial, Helvetica, sans-serif;
}
h2{
    padding: 15px;
    font-size: 28px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: aliceblue;
}
p{
    font-size: 18px;
    line-height: 1.5em;
}
ul li{
    padding-left: 17px;
    margin-left: 16px;
    font-size: 18px;
    line-height: 1.5em;
}
ol li{
    padding-left: 17px;
    margin-left: 17px;
    font-size: 18px;
    line-height: 1.5em;

}
img{
    width: 400px;
    margin: 0 auto;
    display: block;
}
.container1{
   display: flex;
   flex-direction: row;
   align-items: center;
   margin-top: 10%;
   gap: 15%;
   justify-content: center;
}
.container1 h1{
   font-size: 60px;
}
.container1 img{
   border-radius: 30%;
   border-width: 10px;
   border-color: rgb(0, 0, 0);
   border-style: double;
   filter: grayscale(0.8);
}
.container2{
   margin-top: 10%;
   display: flex;
   flex-direction: column;
   width: 60%;
   border-width: 15px;
   border-color: black;
   border-style: double;
   padding: 5%;
   margin: 10% auto;
  
}
.container2 .texto{
   padding-top: 2%;
   padding-bottom: 3%;
}
.container2 img{
   filter: sepia(0.4);
}
.container3{
   display: flex;
   flex-direction: row-reverse;
   gap: 5%;
   width: 60%;
   border-width: 15px;
   border-color: black;
   border-style: double;
   padding: 5%;
   margin: 10% auto;
   background-image: url(../imagens/fundo5.jpg);
   background-repeat: no-repeat;
   background-size: 100% 100%;
}
.container3 .texto{
   color: rgb(255, 255, 255);
}
.container3 .titulo{
   color: rgb(112, 233, 164);
}
.container4{
   display: flex;
   flex-direction: row;
   gap: 5%;
   margin-top: 10%;
   align-items: center;
}
.container4 .texto{
   background-image: url(../imagens/fundo7.jpeg);
   background-repeat: no-repeat;
   background-size: 100% 100%;
   color: aliceblue;
   padding: 5%;
}
.container5{
   margin-top: 10%;
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: center;
   gap: 2%;
}
.container5 img{
   transform: scaleX(-1);
   width: 300px;
}
summary{
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-decoration: underline;
    line-height: 2em;
    color: aquamarine;
    cursor: pointer;
}
summary::marker{
    color: black;
    
}
details p{
    margin-left: 3%;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
}
details ul{
    margin-left: 6%; 
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
}
nav{
    display: flex;
    justify-content: space-around;
    align-content: center;
}
nav{
    text-decoration: none;
}
nav .menu{
    width: 50%;
    text-align: right;
}
nav .menu ul{
    list-style-type: none;
    padding: 0%;
    margin: 0%;
}
nav .menu ul li{
    float: inline-start;
    width: 25%;
    text-align: center;
    padding-top: 7px;
}
nav .menu ul li a{
    font-size: 22px;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    color: white;
    text-transform: capitalize;
    padding: 8px;
}
nav .menu ul li a:hover{
    background-color:aliceblue;
    color: darkgreen;
}
nav .menu ul li ul{
    display: none;
}
nav .menu ul li:hover ul{
    display: block;
}
nav .menu ul li ul li{
    width: 100%;
    height: 40px;
    flex: none;
    background-color: black;
}

