body {
    background-color: #0d1117; /* Dark background */
    color: #00ff00; /* Green text for terminal look */
    font-family: 'monospace', 'Courier New', Courier, monospace; /* Monospace font */
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.monitor-screen {
    background-color: #1a1e24; /* Slightly lighter dark for screen */
    border: 2px solid #00ff00; /* Green border for monitor */
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.7); /* Subtle green glow */
    padding: 20px;
    max-width: 90%;
    width: 800px; /* Fixed width for terminal feel */
    box-sizing: border-box;
    overflow-y: auto; /* Enable scrolling if content overflows */
    height: 90vh; /* Make it fill most of the viewport height */
    border-radius: 5px; /* Slightly rounded corners */
    position: relative;
}

.monitor-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        rgba(0, 255, 0, 0.05),
        rgba(0, 255, 0, 0.05) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none; /* Allow clicks to pass through */
}

h1, h2, h3, h4, h5, h6 {
    color: #00ffff; /* Cyan for headings */
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
    margin-top: 20px;
    margin-bottom: 10px;
}

p, ul, li {
    line-height: 1.5;
    margin-bottom: 10px;
}

header, main, footer {
    padding: 10px 0;
}

header h1, header p {
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav li {
    display: inline-block;
    margin: 0 10px;
}

nav a {
    color: #ffff00; /* Yellow for links */
    text-decoration: none;
    text-shadow: 0 0 3px rgba(255, 255, 0, 0.5);
}

nav a:hover {
    text-decoration: underline;
}

section {
    margin-bottom: 30px;
}

footer {
    text-align: center;
    font-size: 0.8em;
    color: #009900;
}