
body {
    background-color: #fcfef1;
    color: #000;
    -- font-family: sans-serif;
    font-family: helvetica;
    margin: 0;
}

header {
    background-color: #628474;
    text-align: center;
    padding: 20px 0;
    border-bottom: 2px solid #fcfef1;
}

.logo {
    max-width: 100%;
    object-fit: scale-down;
}

.hero {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  font-size: 2.5em;
  margin-top: 20px;
  color: #587668;
}

.container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    max-width: 960px;
    margin: 0 auto;
    padding: 10px;
}

.about {
    display: flex;
    align-items: flex-start; /* Align items to the top */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    padding-bottom: 50px
}

.about img {
    max-width: 300px;
    float: left;
    padding: 5px 10px;
}

.about-text {
    color: #304238;
    padding: 10px;
}

.about-text {
    flex: 1;
    min-width: 300px; /* Prevent text from getting too squished */
}

/* Responsive layout for smaller screens */
@media (max-width: 768px) {
    .about {
        flex-direction: column;
    }
}

footer {
    background-color: #9cc2a5;
    color: #fcfef1;
    padding: 20px 0;
    text-align: center;
}

.container-footer {
    display: flex;
    flex-flow: column;
    justify-content: space-around;
    max-width: 960px;
    margin: 0 auto;
    padding: 10px;
}

.social-media a {
    color: #fcfef1;
    text-decoration: none;
    margin: 0 10px;
    display: inline-block;
}

.social-media img {
    width: 24px;
    height: 24px;
}
