* {
    padding: 0;
    margin: 0;
}

body {
    background-color: green;
}

header{
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 10vh;
    background-color: green;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
header div.logo{
    display: flex;
    justify-content: flex-start;
    width: 20%;
}
header div.navigation{
    display: flex;
    justify-content: flex-end;
    width: 70%;
}
.ul-header{
    width: 80%;
    display: flex;
    justify-content:flex-end;
    list-style-type: none;
    padding: 8px; 

}
.li-header{
    padding: 0 15px;
    color: var(--corTexto2);
}
.li-header :hover{
    border-bottom: solid 1px white;
}
.active {
    font-weight: bold;
}

.corpo {
    background-color: white;
    margin-top: 3.5%;
    margin-bottom: 7%;
    padding-bottom: 10%;
}

.titulos {
    padding: 1.5%;
}

#tema {
    font-size: 20px;
    text-align: center;
}

#titulo {
    font-family: "Montserrat", sans-serif;
    font-size: 70px;
    color: green;
    text-align: center;
    font-family: 'CowboyslangW00-Expanded', cursive;
}

.assunto {
    display: grid;
    grid-template-areas: "redacao imagens";
    grid-template-columns: 65% 35%;
    padding-left: 8%;
    padding-right: 8%;
    padding-top: 2%;
}

.redacao {
    grid-area: redacao;
}

#redacao {
    font-size: 25px;
    text-align: justify;
}

.imagem  {
  grid-area: imagens;
  margin-left: 5%;
}

#img1 {
    border: 3px lightgray solid;
    border-radius: 10px;
    background-color: lightgray;
    height: 48%;
}

#img2 {
    border: 3px lightgray solid;
    border-radius: 10px;
    background-color: lightgray;
    height: 48%;
    margin-top: 10%;
}

.linha {
    height: 1px;
    background-color: green;
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 1%;
}