/* Global styles */
body {
    margin: 0;
    font-family: monospace;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

/* Center content styles */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.center-content {
    text-align: center;
}

h1 {
    font-size: 5rem;
    margin: 0;
}

.subtext {
    font-size: 1.5rem;
    margin: 0.5rem 0 0;
}

/* Footer styles */
footer {
    text-align: center;
    font-size: 0.75rem;
    position: sticky;
    bottom: 0;
    width: 100%;
    padding: 0.5rem;
    background-color: black;
}
