html{
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    margin-top: 10px;
}
body{
    width: 90%;
    height: 95%;
    margin: auto;
    
}

#topo{
    background-color: aquamarine;
    width: 100%;
    height: 15%;
    position: relative;
    float: left;
    text-align: center;
}
#topo h1{
    font-size: 5em;
    
}
#meio{
    background-color: rgb(49, 126, 161);
    width: 100%;
    height: 80%;
    position: relative;
    float: left;
}
#esquerda{
    height: 100%;
    width: 20%;
    position: relative;
    float: left;
    background-color: gray;
}

#centro{
    width: 40%;
    position: relative;
    float: left;
}
#direita{
    width: 15%;
    height: 100%;
    position: relative;
    float: right;
    background-color: gray;
}
#quadroBranco{

    width: 90%;
    aspect-ratio: 1/1;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5px;
    margin-top: 5px;
    background-color: white;
}

#rodape{
    background-color: aqua;
    width: 100%;
    height: 5%;
    position: relative;
    float: left; 
   
}

p{
    margin: 0;
    font-size: 1.5em;
}


img{
    position: absolute;
    width: 20%;
    top: 50%;
    left: 75%;
    aspect-ratio: 1/1;
    z-index: 10;
}