.monitor {
    position: relative;
    background: #000;
    border: 5px solid #444;
    box-shadow: 0 0 20px rgba(255, 191, 0, 0.5), 0 0 40px rgba(255, 191, 0, 0.3);
    border-radius: 50px;
    padding: 20px;
    width: 90%;
	height: 90%;
    max-height: 90%;
    max-width: 90%;
    text-align: left;
    margin: 0 auto; /* Centers the container */
    z-index: 0; /* Base layer */
	overflow-y: auto;
	scrollbar-width: none;
	word-wrap: break-word;
}

.monitor::before {
    content: '';
    position: fixed; /* Make the scanline effect follow the viewport */
    top: 0;
    left: 0;
    width: 100%; /* Cover the viewport width */
    height: 100%; /* Cover the viewport height */
    pointer-events: none; /* Allow interactions with underlying content */
    background: repeating-linear-gradient(
        0deg, 
        rgba(0, 0, 0, 0.3), 
        rgba(0, 0, 0, 0.3) 1px, 
        rgba(0, 0, 0, 0.7) 2px
    ); /* Creates the scanline effect */
    z-index: 1; /* Ensure it’s above content */
    mix-blend-mode: multiply; /* Blend scanlines with content */
}

.monitor::-webkit-scrollbar {
    display: none;
}

.monitor::after {
	content: "_";
	animation: blink 0.6s step-start infinite;
}

@keyframes blink {
	50% {
		opacity: 0;
	}
}


body {
    margin: 0;
    padding: 0;
    background: black;
    color: #ffbf00; /* Amber color */
    font-family: 'Courier New', Courier, monospace; /* Monospace font */
    font-size: 1.2rem;
    line-height: 1.5;
    text-shadow: 0 0 5px #ffbf00, 0 0 10px #ffbf00;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: auto; /* Allow body scroll */
    white-space: pre-wrap;
}

.monitor img {
    width: 25%; /* Adjust as needed */
    height: auto;
    filter: sepia(1) saturate(1000%) contrast(1.2) brightness(1.5); /* Enhance brightness */
    position: relative; /* Ensure positioning for scanline effect */
    opacity: 1;
    z-index: 10; /* Ensure the image is on top */
}

pre {
    white-space: pre-wrap; /* Ensures text wraps within the container */
    text-indent: 0; /* Removes any indent */
    margin: 0; /* Removes default margin */
    padding: 0; /* Removes default padding */
    line-height: 1.0; /* Adjust line spacing */
    font-size: 0.25rem;
    text-align: center;
}

.monitor a {
    color: #ffbf00;
	background-color: transparent; /* Prevent blue background */
    text-decoration: underline;
	font-weight: bold;
    text-shadow: 0 0 5px #ffbf00, 0 0 10px #ffbf00;
	-webkit-tap-highlight-color: transparent;
}

.monitor a:hover {
    color: #f7e7b9;
	font-weight: bold;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(255, 191, 0, 0.8);
}

.monitor a:visited {
    color: #f0b300;
    text-decoration: underline;
    text-shadow: 0 0 5px #ffbf00, 0 0 10px #ffbf00;
}
