body {
    background-color: #f0f8ff;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    color: #228b22;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

h1, h2, h3 {
    color: #006400;
    text-shadow: 1px 1px 2px #eef;
}

a {
    color: #4682b4;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #b0e0e6;
}

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

button:hover {
    background-color: #2e8b57;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #d3d3d3;
    color: black;
    text-align: center;
}

@media (max-width: 600px) {
    body {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
}