body{
background-image: url(../imagens/desenho29.jpg);
background-repeat: no-repeat;
background-size: 100%;
background-attachment: fixed;
margin-left: 5%;
margin-right: 5%;
margin-top: 2%;
margin-bottom: 2%;
text-align: justify;
font-family: Arial, Helvetica, sans-serif;
border-style: groove;
border-color: rgb(0, 0, 0);
border-width: 8px;
padding: 1%;
color: aliceblue;
}
h1{
    text-align: center;
    color: rgb(0, 0, 0);
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-decoration: underline;
}
p{
    font-style: italic;
    font-weight: bold;
    text-align: justify;
}
img{
    width: 550px;
    display: block;
    margin: 0% auto;
    transition: 1s;
}
img:hover{
transform: scale(1.1);
border-radius: 25%;
}
summary{
    font-weight: bold;
}
.fonte{
    text-align: right;
    text-decoration: underline;
    font-size: 12px;
}
.nome{
    text-align: center;
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
}
@media only screen and (max-width:800px){
    body{
        background-repeat: repeat;
        background-size: 100% 100%;
    }
    img{
        width: 90%;
    }
}