
body {
    background-color: black;
    color: #00FF00;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 600px;
}

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

.glitch-bar {
    background: url('../images/vhs-glitch.png') repeat-x;
    height: 6px;
    margin: 20px 0;
}

nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

nav a {
    color: #00FF00;
    text-decoration: none;
    border: 1px solid #00FF00;
    padding: 10px;
    transition: background 0.3s;
}

nav a:hover {
    background-color: #004400;
}

.footer {
    margin-top: 30px;
    font-size: 1rem;
}
