#fachada{
    border-radius: 2px;
    width: 1200px;
    height: 300px;
    margin: 20px auto;
    display: block;
}

#container{
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
}

#estrutura{
    width: 45%;
    height: auto;
    float: left;
    background-color: rgba(100, 100, 100, 0.05);
    padding: 16px;
    margin: auto auto auto 20px;
}

#estruturar{
    width: 45%;
    height: auto;
    float: right;
    background-color: rgba(100, 100, 100, 0.05);
    padding: 16px;
    margin-right: 20px;
}

#conheca{
    font-family: monospace;
    color: black;
    margin-left: 8px;
}

#historia{
    font-family: monospace;
    font-size: 13.5px;
    color: black;
    text-align: justify;
    margin: 10px 10px 10px 10px;
}

#titulo{
    font-family: monospace;
    color: black;
    text-align: center;
}

.sala{
    width: 250px;
    height: 160px;
    display: inline-table;
    margin: 10px 10px auto;
}

@media only screen and (max-width: 1200px){
    #cabecalho, #logo, #navegacao, #fachada{
        width: 100%;
        height: auto;
        display: grid;
    }

    #container{
        display: grid;
    }

    #estrutura{
        width: 90%;
        margin: 0 0 0 0;
    }

    #estruturar{
        width: 90%;
        margin: 5px 0 0 0;
    }

    #historia{
        text-align: left;
    }

    .sala{
        display: grid;
        margin: auto auto auto auto;
    }
}