body{
    background-color: rgb(0, 0, 0);
    color: rgb(8, 156, 129);
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
}
section{
    height: 95vh;
}
h1{
    text-align: center;
    text-decoration: underline;
}
h2{
    text-align: center;
    padding-top: 5%;
    text-decoration: underline;
}
img{
    display: block;
    margin: 0 auto;
    width: 350px;
}
nav{
    width: 80%;
    margin: 0 auto;
    display: block;
}
nav ul{
    list-style: none;
    padding: 0%;
    margin: 0%;
    width: 100%;
}
nav ul li{
    float: inline-start;
    width: 32%;
    padding-top: 8px;
    padding-left: 1%;
    text-align: center;
}
nav ul li a{
    color: rgb(255, 255, 255);
    text-decoration: none;
    display: block;
    padding: 8px;
    font-size: 18px;
}
nav ul li a :hover{
    background-color: aqua;
    color: black;
}
.conteudo{
    display: flex;
    flex-direction: row;
    width: 80%;
    align-items: center;
    margin: 0 auto;
}
.conteudo p{
    text-align: center;
    width: 60%;
}
.conteudo img{
    width: 50%;
    padding: 1%;
    border-radius: 15%;
}
.fonte{
    text-align: left;
    text-decoration: underline;
    font-size: 14px;
}
.nome{
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
}
p a{
    text-align: center;
    color: rgb(255, 0, 0);
}
p a:visited{
    color: aqua;
} 
@media only screen and (max-width:800px){
    img{
        width: 90%;
    }
    .conteudo{
        flex-direction: column;
    }
    .conteudo p{
        width: 98%
    }
    section.conteudo{
        height: 120%;
    }
    .conteudo img{
        display: none;
    }
}