#redondo{
    width: 800px;
    height: auto;
    border-width: 16px;
    border-color: #1D57A5;
    border-style: solid;
    border-radius: 20px;
    /*background-color: grey;*/
    background-color: #1D57A5;
    text-align: center;
    vertical-align: middle;
    margin-left: 9%;
    margin-right: 10%;
}
#site{
    margin: 0;
    width: 100%;
    max-width: 1920px;
    height: auto;
    margin-bottom: 0;
    margin-right: auto;
    background-color:  #f5f6f7;
    text-align: center;
    vertical-align: middle;
}
#body{
    
}
#header{
    
}
#conteudo1{
    display: grid;
    margin-top: 40px;
    grid-template-columns: repeat(3, 33%);
    grid-template-rows: repeat(1, 100%);
    align-items: center;
	justify-content: center;
}
#conteudo2{
    display: grid;
    margin-top: 40px;
    grid-template-columns: repeat(3, 33%);
    grid-template-rows: repeat(2, 50%);
    align-items: center;
	justify-content: center;
}
#conteudo3{
    display: grid;
    margin-top: 40px;
    grid-template-columns: repeat(3, 33%);
    grid-template-rows: repeat(3, 33%);
    align-items: center;
	justify-content: center;
}
#conteudo4{
    display: grid;
    margin-top: 40px;
    grid-template-columns: repeat(3, 33%);
    grid-template-rows: repeat(4, 25%);
    align-items: center;
	justify-content: center;
}

#footer{
    padding: 10px;
}

.h1h{
    font-size: 80px;
    text-align: center;
}
.h2h{
    font-size: 60px;
    text-align: center;
}
.h3h{
    font-size: 50px;
    text-align: center;
}
.h4h{
    padding: 24px;
    font-size: 44px;
    text-align: justify;
}

.nome{
  max-width: 40ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.item {
	display: flex;
    display: -webkit-flex; /* Garante compatibilidade com navegador Safari. */
    align-items: center;
	justify-content: center;
}

.logo{
    margin-top: 10px;
    width: 50%;
}


@media all and (orientation: portrait){
  
    .imagem{
        width: 100%;
        padding: 40px;
    }
    .imagempr{
        padding-bottom: 40px;
        
    }
}

@media all and (orientation: landscape){
  
    .imagem{
        width: 90%;
        padding: 10px;
    }
    .logo{
        width: 50%;
    }
    #header{
        height: 50%;
    }
    #conteudo1{
        height: 150%;
    }
    #conteudo2{
        height: 150%;
    }
    #conteudo3{
        height: 150%;
    }
    #conteudo4{
        height: 150%;
    }
    .h1h{
        font-size: 60px;
    }
    .h2h{
        font-size: 30px;
    }
}
  
  