body {
    font-family: 'Comic Neue', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #2d3436;
    background-color: #f5e6cc;
}

header, footer {
    background: #4caf50;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    margin: 0;
}

main {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
}

.content {
    padding: 1rem;
}

.content h2 {
    font-family: 'Poppins', sans-serif;
    color: #006064;
    font-size: 1.5rem;
}

.content p {
    margin-bottom: 1rem;
}

.content a {
    color: #006064;
    text-decoration: underline;
}

.content a:hover {
    color: #80deea;
}

footer {
    margin-top: 2rem;
    border-top: 4px solid #66bb6a;
}

footer a {
    color: #80deea;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}