html{
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
 
}

body{
    width: 100%;
    height: 100%;
    border: 1px solid red;
    margin: 0;
}

#content{
    width: 100%;
    height: 100%;
    padding: 20px;
}

header{
    width: 90%;
    height: 15%;
    background-color: black;
    color: white;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

header h1{
    font-size: 4em;
    font-weight: 500;
}


nav{
    margin: auto;
    width: 90%;
    height: auto;
    background-color: blue;
    display: flex;
    justify-content: space-around;

    padding: 10px 0px;
}

nav a{
    color: white;
    text-decoration: none;
    text-align: center;
     

}

#centro{
    width: 90%;
    height: 65%;
    margin: auto;
    /*background-color: aquamarine;*/
    display: flex;
    flex-direction: row;
}

#esquerda{
    float: left;
    width: 15%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*background-color: brown;*/
}

#esquerda a{
    text-decoration: none;
    color: white;
    width: 100%;
    background-color: gray;
    border-bottom: 1px solid white;
    padding: 20px;
    font-size: 20px;
}

#meio{
    float: left;
    width: 60%;
    height: 100%;
    /*background-color: rgb(42, 165, 63);*/
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;

}

#meio h3{
    text-align: center;
    margin-top: 0px;
    font-weight: 400;
    font-size: 1.5em;
    padding-top: 10px;
}

#meio #imgTablet{
    width: 85%;
    margin: auto;
}

#meio p{
    width: 85%;
    background-color: rgb(123, 206, 245);
    margin: 20px auto;
}

#imageBox{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 85%;
    margin: auto;
}

#imageBox .image{
    width: 30%;
    height: 150px;

}


#direita{
    float: left;
    width: 20%;
    height: 100%;
    background-color: rgb(42, 140, 165);  
}

#direita img{
    width: 100%;
    height: 100%;
}

footer{
    width: 90%;
    height: 8%;
    margin: auto;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    align-items:center;
    
   
}


footer h1{
    margin-top: auto;
    margin-bottom: 0px;
    font-weight: 525;
    font-size: 2.5em;
}