body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f5f0;
    color: #2c2f33;
}

header {
    background-color: #344e41; /* Dark green for header */
    color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-title {
    font-size: 2.5em;
    margin: 10px 0;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.description {
    font-size: 1.1em;
    line-height: 1.6;
    margin: 20px 0;
}

.separator {
    border-top: 2px solid #344e41; /* Dark green for separator */
    margin: 20px 0;
}

.box-container {
    display: flex;
    justify-content: center; /* Center the single box */
    margin: 20px 0;
}

.long-box {
    flex: 1;
    background-color: #7da27d; /* Light green for the main box */
    color: white;
    padding: 15px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
    max-width: 600px; /* Limit width for readability */
}

.long-box:hover {
    background-color: #5b7e5b; /* Darker green on hover */
}

footer {
    text-align: center;
    padding: 10px 0;
    background-color: #344e41;
    color: white;
}
a {
    color: black;
}