body {
    background-color: #f0f9ff;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    color: #045e56;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    margin: 20px;
    text-align: center;
    color: #023047;
}

a {
    text-decoration: none;
    color: #007f5f;
    transition: all 0.3s ease;
}

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

button {
    background-color: #fb8500;
    border: none;
    padding: 10px 20px;
    color: white;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #023047;
}

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