body{
    background-color: violet;
    color: black;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
}
section{
    height: 95vh;
}
img{
    width: 650px;
    display: block;
    margin: 0 auto;
}
h1{
    text-align: center;
    text-decoration: underline;
}
h2{
    text-align: center;
    padding-top: 5%;
    text-decoration: underline;
}
nav{
    font-weight: 80%;
    text-align: center;
    margin: 0 auto;
}
nav ul{
    list-style: none;
    padding: 0%;
    margin: 0%;
    width: 100%;
}
nav ul li{
    float: inline-end;
    width: 32%;
    text-align: center;
    padding-top: 8px;
    padding-left: 1%;
}
nav ul li a{
    color: indigo;
    text-decoration: none;
    display: block;
    padding-top: 8px;
    font-size: 18px;
}
nav ul li a:hover{
    background-color: hotpink;
    color: black;
}
.conteudo{
    display: flex;
    flex-direction: row;
    width: 80%;
    margin: 0 auto;
    align-items: center;
}
.conteudo p{
    width: 60%;
    text-align: center;
}
.fonte{
    text-align: right;
    text-decoration: underline;
    font-size: 14px;
}
.nome{
    text-align: center;
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
}
@media only screen and (max-width:800px){
img{
   width: 80%;
}
}
