
body {
    margin: 0;
    font-family: Arial, sans-serif;
}
.container {
    width: 60%;
    margin: 0 auto;
}
header {
    background-color: #FFFFFF;
    color: #000000;
}
.name {
    background-color: #CCDDCC;
    text-align: center;
    padding: 20px;
    font-size: 40px;
}
nav {
    background-color: #77AA99;
    text-align: center;
    padding: 30px;
}
nav a {
    color: #000000;
    margin: 0 15px;
    text-decoration: none;
}
nav a:hover {
    text-decoration: underline;
}
section {
    padding: 50px;
    text-align: left;
}
#section1 {
    background-color: #CCDDCC
}
.section1-content {
    display: flex;
    aling-items: center;
    gap: 150px;
}
.section-text {
    flex: 1px;
}
.section-image {
    flex: 1px;
}
.section-image img {
    width: auto;
    height: auto;
}
#section2 {
    background-color: #FFFFFF;
}
footer {
    background-color: #CCDDCC;
    color: #000000;
    padding: 10px;
}
.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.footer-box {
    margin: 10px;
    text-align: center;
}
