@font-face {
    src: url(fonts/chinese\ rocks\ rg.otf);
    font-family: "minhaFonte";
 }

 body{
    background-image: url(imagem/background.jpg);
    background-size: 100% 100%;
    height: 1000px;
    background-repeat: no-repeat;
    
}

#principal{
    width: 85%;
    height: 1000px;
    margin: auto;
    
}

#cabecalho{
    background-image: url(imagem/cabecalhoreddead.jpg);
    width: 100%;
    height: 200px;
    background-size: 100% 100% ;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

#menu{
    width: 100%;
    height: 50px;
    font-family: "minhaFonte";
}

.item{
    background-color: beige;
    width: 20%;
    height: 50px;
    float: left;
    color: red;
    font-size: 20px;
    text-align: center;
    padding-top: 20px;
}

.item:hover{
    background-color:black;
    font-size: 24px;
    transition: background-color 1s;
}

#texto{
    width: 96%;
    background-color:beige; 
    text-align: justify;
    font-size: 1em;
    padding-left: 2%;
    padding-right: 2%;
    padding-top: 4%;
    padding-bottom: 2%;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif ;
}

h1{
    text-align: center;
    font-family: "minhaFonte";
}

#creditos{
    width: 100%;
    background-color: beige;
    height: 200px;
    text-align: center;
    float:left;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

#creditos h1 {
    font-size: 1.2em;
    margin-bottom: 1px;
}

#contato {
    font-size: 0.9em;   
    font-family: Georgia, 'Times New Roman', Times, serif;
}

@media screen and (max-width: 700px){
    body{
        background-image: url(imagem/background.jpg);
        background-color: beige;
    }
    
    #principal{
        width: 100%;
    }
    #texto{
        font-size: 1.1em;
    }

    .item{
        font-size: 14px;
         
     }
 
     .item:hover{
         background-color:black;
         font-size: 21px;
         transition: background-color 1s;
     }
 
    
}

@media screen and (max-width: 500px){
    body{
        background-image: url(imagem/background.jpg);
        background-color: beige;
    }
    
    #principal{
        width: 100%;
    }
    .item{
        width: 100%;
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 20px;
        
    }
    
    #texto{
        font-size: 1.2em;
    }
    
}