body {
  margin: 0;
  padding: 15px 20px;
  min-height: 99%;
  width: 100%;
  min-width: 550px;
  color: #c74d3d;
  background: #12120F;
  font-family: cursor, monospace;
  overflow-x: hidden;
}
::selection {
  color: #211830;
  background-color: #519975;
}
::-moz-selection {
  color: #211830;
  background-color: #519975;
}
textarea {
  left: -1000px;
  position: absolute;
}
b {
  font-weight: bold;
  text-decoration: underline;
}
/* Cursor Start */
.cursor {
  font-size: 12px;
  color: #73ABAD;
  background-color: #73ABAD;
  position: relative;
  opacity: 1;
  height: 1.5em;
  width: 10px;
  max-width: 10px;
  transform: translateY(4px);
  overflow: hidden;
  text-indent: -5px;
  display: inline-block;
  text-decoration: blink;
  animation: blinker 1s linear infinite;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}
#command {
  cursor: text;
  height: 50px;
  color: #73ABAD;
}
#liner {
  line-height: 1.3em;
  margin-top: -2px;
  animation: show 0.5s ease forwards;
  animation-delay: 1.2s;
  opacity: 0;
}
#liner::before {
  color: #519975;
  content: "guest@voidexistence.com:~$";
}
#liner.password::before {
  content: "Password:";
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Cursor End */
p {
  display: block;
  line-height: 1.3em;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  margin: 0;
  letter-spacing: 0.05em;
  animation: typing 0.5s steps(30, end);
}
.no-animation {
  animation: typing 0 steps(30, end);
}
.margin {
  margin-left: 20px;
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.index {
  color: #DCDCCC;
}
.color2 {
  color: #B89076;
}
.command {
  color: #73ABAD;
  text-shadow: 0 0 5px #73ABAD; 
}
.error {
  color: #B89076;
}
.white {
  color: #fff;
}
.inherit,
a {
  color: #9C8394;
}
a {
  text-decoration: inherit;
}
a:hover {
  background: #73ABAD;
  color: #211830;
}
a:focus {
  outline: 0;
}

/* Prevent terminal from causing the page to scroll after several entries. */
#terminal { max-height:800px; overflow-y:auto;}
#terminal::-webkit-scrollbar {
  width: 0.2em;
  background-color: #F5F5F5;
}

#terminal::-webkit-scrollbar-thumb {
background-color: #000000;
}

#terminal::-moz-scrollbar {
  width: 0.2em;
  background-color: #F5F5F5;
}

#terminal::-moz-scrollbar-thumb {
background-color: #000000;
}

#terminal::-ms-scrollbar {
  width: 0.2em;
  background-color: #F5F5F5;
}

#terminal::-ms-scrollbar-thumb {
background-color: #000000;
}
/* END */

/* CRT effect with flickering scanlines and RGB grid. */
@keyframes flicker {
    50% {
        top: -3px
    }
}

.crt::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: " ";
    display: block;
    background: linear-gradient(rgba(18,16,16,0) 50%,rgba(0,0,0,.5) 50%),linear-gradient(90deg,rgba(255,0,0,.1),rgba(0,255,0,.05),rgba(0,0,255,.1),rgba(0,0,0,.2));
    z-index: 2;
    background-size: 100% 4px,3px 100%;
    pointer-events: none;
    filter: contrast(65%);  /* it helps... lower this to 50% for a stronger effect */
    animation: flicker .03s step-end infinite
}
/* END */

/* Modal for embeded content */
.modal {
  width: 65%;
  height: 65%;
  position: fixed; /* keeps the modal centered and in the foreground */
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5); /* adds a semi-transparent black background */
}

.modal iframe {
  width: 100%;
  height: 100%;
  border-width: 5px;
  border-color: #c74d3d;
}

.modal {
  /* styles for the modal */
  width: 65%;
  height: 65%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0; /* initially hidden */
  transition: opacity 0.5s; /* add a transition to the opacity */
}

.modal.open {
  /* styles for the modal when it is open */
  opacity: 1; /* show the modal */
}

.modal.fade-out {
  opacity: 0;
  transition: opacity 0.5s;
}

/* Close Button Styling */
closeapplication {
  background-color: black;
  color: white;
  font-family: "Courier New", monospace;
  border: 1px solid white;
  padding: 5px 10px;
  }
  
  closeapplication:hover {
  background-color: white;
  color: black;
  }
  
  /* Optional: if you want to add an "active" state to the button */
  closeapplication:active {
  background-color: #808080;
  }
  
  /* Optional: to make the button look like a button on MS-DOS */
  closeapplication {
  border-radius: 0;
  }
  
  /* Optional: to make the text look like text on MS-DOS */
  closeapplication {
  text-shadow: none;
  }
  
  /* Optional: to change the font size to look like on MS-DOS */
  closeapplication {
  font-size: 12px;
  }
/* END */