body {
    font-family: 'Comic Sans MS', 'Comic Sans', cursive;
    background-color: #e0f7f5;
    color: #0c6c59;
    margin: 0;
    padding: 0;
}

header {
    background-color: #90e0ef;
    padding: 20px;
    text-align: center;
}

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

a {
    color: #007f5f;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #10b981;
}

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

input[type="text"], select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}