/* Mystic Forest CSS */
body {
    background-color: #e0f7fa;
    font-family: 'Courier New', monospace;
    color: #004d40;
    transition: background-color 0.5s;
}

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

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

a:hover {
    color: #00796b;
}

nav {
    background-color: #4db6ac;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #004d40;
    color: #ffffff;
    text-align: center;
    padding: 20px;
}

button {
    background-color: #00796b;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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