body {
    background-color: black;
    color: white;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    font-size: 13px; /* Apply font size globally to the body */
}

#terminal {
    width: 100%;
    height: 100%;
    background-color: black;
    padding: 20px;
    box-sizing: border-box;
    font-size: 13px; /* Ensure the terminal has a font size of 10px */
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

#command-line {
    width: 100%;
    font-size: 13px; /* Make sure the command input also has 10px font size */
    color: white;
    outline: none;
    border: none;
    background: black;
    display: inline;
}

.output-line {
    margin-bottom: 5px;
    font-size: 13px; /* Ensure output lines use 10px font size */
}

.prompt {
    color: green;
    font-size: 13px; /* Make sure the prompt also uses 10px font size */
}

a {
    color: white; /* Make the hyperlinks white */
}

a:hover {
    text-decoration: underline; /* Optional: Underline the link when hovered */
}