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

html, body {
    height: 100%;
    width: 100%;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    text-align: center;
}

h1 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 2rem;
    color: #ffffff;
    text-transform: lowercase;
}

h2 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.2rem;
    font-weight: normal;
    color: #ffffff;
    text-transform: lowercase;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.links a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    text-transform: lowercase;
    transition: opacity 0.2s;
}

.links a:hover {
    opacity: 0.7;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 4rem;
    justify-content: center;
}

.nav-links a {
    color: #aaaaaa;
    text-decoration: none;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    text-transform: lowercase;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 0.7;
}

