body {
    background-color: #e0f7fa;
    color: #004d40;
    font-family: 'Comic Sans MS', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

h1, h2, h3 {
    color: #00796b;
}

a {
    color: #00796b;
    text-decoration: none;
}

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

button {
    background-color: #00796b;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
}

button:hover {
    background-color: #004d40;
}

footer {
    background-color: #004d40;
    color: #e0f7fa;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}