/* Stylesheet for Moon Bases Theme */
body {
    background-color: #0b3d91; /* Deep Space Blue */
    color: #ffffff; /* Bright Lunar White */
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.6;
    padding: 20px;
}

h1, h2, h3 {
    color: #ffcc00; /* Moon Gold */
    border-bottom: 2px solid #444;
}

a {
    color: #76c7c0; /* Cosmic Teal */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff5733; /* Meteor Orange */
}

nav {
    background-color: #444;
    padding: 10px;
    margin-bottom: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 15px;
}

footer {
    margin-top: 40px;
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: #bbb;
}

.emoji {
    font-size: 24px;
}

.rotate-planet {
    animation: rotation 10s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}