body {
    background-color: #e0f7fa;
    color: #00695c;
    font-family: 'Comic Sans MS', cursive, sans-serif;
}

h1, h2, h3 {
    font-family: 'Arial Black', Gadget, sans-serif;
}

a {
    text-decoration: none;
    color: #004d40;
    transition: color 0.3s;
}

a:hover {
    color: #00796b;
}

button {
    background-color: #004d40;
    color: white;
    border-radius: 12px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #00796b;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

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