html, body {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    height: 100%;
}

header {
    background-color: #314f37;
    color: white;
    padding: 20px;
    text-align: center;
}

main {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.contact {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

.contact h2 {
    color: #314f37;
}

/* footer {
    align-items: end;
    padding: 10px;
    background-color: #314f37;
    color: white;
} */

footer {
    text-align: center;
    padding: 10px;
    background-color: #314f37;
    color: white;
}

a {
    color: #314f37;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
