html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
    display: flex;
    justify-content: center;
    align-items: center;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 120px; /* Increased padding */
    padding-bottom: 120px; /* Increased padding */
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    max-width: 60%;
    margin: 20px;
    text-align: left;
}

h1, h2, p {
    font-size: 14px;
    color: black;
}

#text {
    font-size: 24px;
    color: black;
    white-space: nowrap;
    overflow: hidden;
    display: inline;
    border-right: 2px solid black; /* Cursor styling */
    animation: blink 0.5s step-start infinite; /* Blink animation */
}

.cursor {
    margin-left: 2px; /* Add a small space between the text and the cursor */
    border-right: 2px solid black;
    animation: blink 0.5s step-start infinite;
    display: inline;
}

/* Highlight color */
::selection {
    background: black;
    color: white;
}

@keyframes blink {
    0%, 100% {
        border-color: black;
    }
    50% {
        border-color: transparent;
    }
}

.footer-links {
    margin-top: 20px;
    text-align: left;
}

.footer-links a {
    font-size: 12px;
    color: black;
    text-decoration: none;
    margin: 0 5px;
}

.footer-links a:hover {
    text-decoration: underline;
}
