body {
    background-color: #ffebcd;
    color: #5c4033;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    text-align: center;
    color: #8b4513;
}

a {
    color: #d2691e;
    text-decoration: none;
}

a:hover {
    color: #ff4500;
    text-decoration: underline;
}

button {
    background-color: #32cd32;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px;
}

button:hover {
    background-color: #228b22;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #eee8aa;
    position: fixed;
    width: 100%;
    bottom: 0;
}