body{
    background: wheat;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

header{
   
    text-align: center;
    
    
}
main{
    width: 60%;
    height: 1000px;
    margin: 15px auto;
    background-image: url(../imagens/imagens/capa-ini.jpg);
    background-position:center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
    box-shadow: 3px 3px 8px ;
    justify-content: center;
    align-content: center;
    display: flex;
    flex-direction:column;
    justify-content: space-between;
    overflow: hidden;
    padding-bottom: 30px;
}
span{
    color: rgb(182, 27, 27);
}
h1{
    font-size: 60px;
    text-transform:capitalize;
    letter-spacing: 3px;
    text-shadow: 5px 5px 5px black;
    color: rgb(25, 142, 163);
    font-family: Arial, Helvetica, sans-serif;
   
}
nav{
   text-align: right;
}
a{
    text-decoration: none;
    background-color: #555;
    padding: 10px;
    margin-right:13px;
    border-radius: 5px;
    color: white;
    box-shadow: 2px 2px 2px black;
}
a:hover{
    box-shadow: none;
    background: #333;
}
@media only screen and (max-width: 1000px){
   main{
    width: 97%;
    background-position: center;
    max-width: 800px;
   }
}
