/* CSS file (styles.css) */
body {
    background-color: #000;
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
}

.container {
    margin-top: 10vh;
}

.logo {
    width: 200px;
    margin-bottom: 20px;
}

a {
    color: #00ff00;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
