body {
margin: 0;
}
* {
box-sizing: border-box;
}
.container {
display: flex;
flex-direction: column;
min-height: 100vh;
}
.header {
min-height: 180px;
width: 100%;
background-color: #463F3A;
color: #F4F3EE;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
padding: 10px 0;
}
.content {
flex: 1;
width: 100%;
border: 1px solid gray;
background-color: #BCB8B1;
color: #463F3A;
display: flex;
padding: 10px;
gap: 20px;
}
.left {
width: 250px;
background-color: #D6CCC2;
gap: 20px;
padding: 20px;
min-height: 200px;
text-align: center;
line-height: 200px;
}
.middle {
background-color: #D6CCC2;
gap: 20px;
padding: 20px;
min-height: 200px;
text-align: center;
flex: 1;
}
.right {
width: 250px;
background-color: #D6CCC2;
gap: 20px;
padding: 20px;
min-height: 200px;
text-align: center;
line-height: 200px;
}
.footer {
height: 150px;
width: 100%;
background-color: #F4F3EE;
color: #463F3A;
display: flex;
justify-content: center;
align-items: center;
}
.logo {
text-align: center;
}
.logo img {
height: 60px;
}
.menu {
display: flex;
justify-content: center;
flex-wrap: wrap;
background-color: #8A817C;
width: 100%;
}
.menu a:hover {
background-color: #F4F3EE;
}
.menu a {
padding: 10px 15px;
text-decoration: none;
color: #463F3A;
}
.social {
display: flex;
justify-content: center;
gap: 10px;
}
.social a {
margin: 5px;
color: #BCB8B1;
padding: 5px 10px;
}
.social a:hover {
background-color: #F4F3EE;
}