@import url('base.css');

#container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding-bottom: 10vh;
}

#title {
    color: var(--accent-pink);
    margin-bottom: 0.5rem;
    line-height: 1;
}

#title pre {
    font-family: monospace;
    font-size: 0.6rem;
    white-space: pre;
}

#footer {
    font-family: monospace;
    white-space: pre;
    color: var(--text-muted);
    position: absolute; 
    bottom: 60px; 
    left: 50%;
    transform: translateX(-50%); 
    margin: 0;
    text-align: center;
    width: 100%;
}

#footer a {
    color: var(--text-primary)
}

.nav {
    display: flex;
    gap: 20px;
}

.nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.4;
    transition: opacity 0.2s ease;
}

.nav a:hover {
    opacity: 1;
}