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

h1, h2, h3 {
    color: #006064;
    text-shadow: 2px 2px #e0f7fa;
}

p {
    color: #004d40;
    line-height: 1.6;
}

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

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

button {
    background-color: #ffab40;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

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

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