body {
    background-color: #121212; /* dark background */
    color: #ffffff; /* white text */
    font-family: 'Courier New', Courier, monospace; /* monospace font */
    margin: 0;
    padding: 0;
    text-align: left;
}

.container {
    max-width: 700px;
    padding: 20px 30px;
}

.title {
    font-size: 2rem;
    margin-bottom: 20px;
    margin-top: 0px;
}

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

nav ul li {
    margin-bottom: 10px;
}

a {
    color: #00ffd9; /* cyan text */
    text-decoration: none;
    position: relative;
}

a:hover {
    color: #ff6ff8; /* pink text on hover */
}
