.container {
    display: flex;
    justify-content: space-between;
}

.alignment-center {
    margin: 0 auto;
    display: block;
}
.alignment-left {
    text-align: inherit;
}

.alignment-right {
    text-align: inherit;
}

body {
    background-color: #0f0f23; /* Dark blue background */
    color: #4dd0e1; /* Bright blue text color */
    font-family: 'Courier New', Courier, monospace;
}

header, footer {
    text-align: center;
    padding: 1em;
    background-color: #12203d; /* Slightly different blue for header/footer */
    color: #a7c7e7; /* Lighter blue for text in header/footer */
}

nav ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

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

a {
    color: #CFECEC; /* Links in the same bright blue */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #0095ff; /* Lighter blue for hover state */
}

footer {
    font-size: 0.8em;
    border-top: 1px solid #2e416d; /* Subtle border for footer */
}
