h1, p{
    display: flex;
    justify-content: center;
    
    color:white;
    font-family: 'Ubuntu', sans-serif;
}
body{
    background-image: url("../img/fundo.png");
    background-size: 100% 100vh;
    
}
#janelas{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.campos{
    background:rgba(35,181,167,0.5) !important;
    height: 220px;
    width: 20%;
    overflow: hidden;
    padding-bottom: 1%;
    margin: 2%;
    display: flex;
    
    flex-direction: column;
    font-family: 'Ubuntu', sans-serif;
    color:white;
    border-radius:20px;
}
.campos:hover {
    transition: 0.3s;
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.buttonJanela{
    width: 50%;
    height: 50px;
    background-color: #084BBD;
    color:white;
    font-family: 'Ubuntu', sans-serif;
    font-size: large;
    border: none;
    padding: 5%;
    
}
.buttonJanela:hover{
    background-color: #011995;
    transition: 0.3s;
    cursor: pointer;
}
a{
    text-decoration: none;
}
@media(max-width:790px){
    .campos{
        width:40%;
        height:125px;
        font-size: x-small;
    }
    .janelasSuperiores{
        margin-top:10px !important;
    }
    .ultimaJanela{
        margin-top:10px !important;
    }
    .janelaIntermediaria{
        margin-top:7px !important;
    }
    .logoSuperior{
        margin-left:25% !important;
    }
    body{
        background-image: url("../img/imagem1.jpg");
        background-size: 100% 100vh;
        
    }
    #titulo{
        margin-block-end: 20px !important;
        margin-block-start: 20px !important;
    }
}
@media(max-width:550px){
    #titulo{
        margin-block-end: 20px !important;
        margin-block-start: 20px !important;
        font-size: x-large !important;
    }
    .campos{
        width:40%;
        height:125px;
        font-size: x-small;
    }
    .logoSuperior{
        margin-left:23% !important;
    }
    #logotop{
        width:130px;
    }
}