html, body {
    height: 100%;
}


.container {
    background-color: aquamarine;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    height: auto !important;
    width: 1200px;
    margin: 0 auto;
}


header {
    background-color: aqua;
}

main {
    background-color: lightblue;
    flex-grow: 1;
    display: flex;
    flex-direction: row;
}

aside {
    background-color: bisque;
    width: 200px;
}

.logo {
    text-align: center;
}

.h1 {
    text-transform: uppercase;
    margin-top: 0;

}

.log {
    width: 40px;
}

.menu {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    
}

.menu div {
    background-color: antiquewhite;
    padding: 15px;
    margin-bottom: 10px;
    flex-grow: 1;
}

.menu div a {
    text-decoration: none;
    color: rgb(65, 63, 63);
    text-transform: uppercase;
}

.address img {
    width: 40px;
}

.email img {
    width: 40px;
}

.tel img {
    width: 40px;
}

footer {
    background-color: aqua;
    height: 150px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.content {
    display: flex;
    justify-content: space-between;
    width: 1200px;
    flex-wrap: wrap;
        
}

.content div {
    background-color: aqua;
    width: 360px;
    height: 400px;
    margin: 30px 0;
    text-align: center;
}

.content img {
    width: 150px;
}