body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: hsl(0, 0%, 8%);
    color: white; /* Optional: Change text color to white for better contrast */
}
body {
    margin: 0;
    padding: 0;
}

nav {
    margin-bottom: 20px; /* Add spacing between navigation and rectangle */
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0; /* Remove default margin */
}

nav ul li {
    display: inline;
    margin-right: 10px; /* Add spacing between navigation buttons */
}

.container {
    width: 100%;
    height: 100vh; /* Use viewport height to make it full screen */
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    overflow-y: auto; /* Enable vertical scrolling */
}

.rectangle {
    width: 600px; /* Fixed width */
    height: 400px; /* Fixed height */
    background-color: #111010; /* Rectangle color */
    padding: 20px; /* Add padding inside the rectangle */
    font-family: 'Courier New', Courier, monospace; /* Set font family for the terminal content */
    line-height: 1.5; /* Set line height */
    overflow: auto; /* Enable scrolling for overflowing content */
}

#terminal {
    position: relative; /* Ensure the terminal is positioned relative */
    width: 80%;
    margin: 0 auto;
    border: 1px solid #ccc;
    font-family: 'Courier New', Courier, monospace; /* Set font family for the terminal content */
    padding: 10px;
}

#input {
    display: inline-block;
}

.blinking-cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}
