/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #121212;
    font-family: 'Courier New', Courier, monospace;
    color: #33ff33;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
}

h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
}

ul li {
    margin: 10px;
}

a {
    text-decoration: none;
    color: #33ff33;
    font-size: 1.5rem;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color
