/* Moonlit Froge Stylesheet */
body {
    background-color: #1c1f26; /* Dark Night Sky */
    color: #e0e6ed; /* Moon Glow White */
    font-family: 'Trebuchet MS', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3 {
    color: #ffd700; /* Starlight Gold */
    text-align: center;
}

a {
    color: #00ffdd; /* Celestial Aqua */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #00a38d; /* Deep Sea Green */
}

nav {
    background-color: #282c34; /* Midnight Blue */
    padding: 20px;
    text-align: center;
}

nav a {
    margin: 0 15px;
    color: #e0e6ed; /* Link Light */
    font-weight: bold;
}

.footer {
    background-color: #333943; /* Twilight Grey */
    color: #e0e6ed; /* Footer Light */
    text-align: center;
    padding: 10px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

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