* {
  cursor: url("mouse.svg"), auto;
}

@font-face {
  font-family: "DOS1";
  src: url("/fonts/MorePerfectDOSVGA.ttf");
  font-weight: bolder;
}

@font-face {
  font-family: "DOS2";
  src: url("/fonts/Fixedsys500c.woff") format("woff");
}

body {
  font-family: DOS1, DOS2, Terminal, Fixedsys, Menlo, Monaco, Consolas,
    "Courier New", monospace;
  font-size: 18px;
  line-height: 1;
  color: #aaaaaa;
  background-color: #0000aa;
}

p {
  margin: 0 0 20px;
}

h1 {
  font-size: 50px;
  border-bottom: 1px solid #aaaaaa !important;
  padding-bottom: 9px;
  margin: 40px 0 20px;
}

.footer {
  border-top: 1px solid #aaaaaa !important;
  padding-top: 25px;
  margin-top: 40px;
}

.dos-bar:hover {
  color: #aaaaaa;
  background-color: #000;
  text-decoration: none;
  display: block;
}

.dos-bar {
  color: #000;
  display: block;
  background-color: #aaaaaa;
  padding-left: 20px;
  height: 26px;
  line-height: 27px;
}

.menu {
  padding-left: 20px;
}

@media (max-width: 992px) {
  .menu {
    padding-left: 50px;
    padding-right: 50px;
  }
}

.menu-nav {
  margin-top: 50px;
  margin-bottom: 20px;
  -webkit-box-shadow: 10px 10px #000;
  box-shadow: 10px 10px #000;
}

.menu .nav > li > h1 {
  font-size: 40px;
  font-weight: 500;
  color: #000;
  margin: 40px;
  padding-bottom: 0;
  padding-top: 5px;
}

.menu .nav > li > a {
  display: block;
  padding: 4px 20px;
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

.menu .nav > li > a:hover {
  color: #aaaaaa;
  background-color: #000;
}

.menu .nav {
  background-color: #aaaaaa;
  border: 2px solid #000;
}

.crt-monitor {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  mix-blend-mode: multiply;
  background-repeat: repeat;
  pointer-events: none;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
    linear-gradient(
      90deg,
      rgba(255, 0, 0, 0.06),
      rgba(0, 255, 0, 0.02),
      rgba(0, 0, 255, 0.06)
    );

  background-size: 100% 2px, 3px 100%;
  z-index: 1001;
  opacity: 65%;
}


@keyframes dialup {
  0% {
    clip-path: inset(0% 0 0% 0);
    background-color: white;
  }
  10% {
    clip-path: inset(10% 0 0% 0);
    background-color: white;
  }
  25% {
    clip-path: inset(20% 0 0% 0);
    background-color: white;
  }
  40% {
    clip-path: inset(25% 0 0% 0);
    background-color: white;
  }
  80% {
    clip-path: inset(60% 0 0% 0);
    background-color: white;
  }
  90% {
    clip-path: inset(90% 0 0% 0);
    background-color: white;
  }
  91% {
    background-color: transparent;
  }
  100% {
    background-color: transparent;
    display: none;
    z-index: -1;
  }
}

#loading-screen {
  z-index: 10;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}

.dial {
  animation-name: dialup;
  -webkit-animation-name: dialup;
  animation-delay: 1.7s;
  animation-duration: 7s;
  -webkit-animation-duration: 7s;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-direction: normal;
  -webkit-animation-direction: normal;
  animation-timing-function: steps(5);
  -webkit-animation-timing-function: steps(5);
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}

.connected {
  animation-name: dialup;
  -webkit-animation-name: dialup;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-direction: normal;
  -webkit-animation-direction: normal;
  animation-timing-function: steps(5);
  -webkit-animation-timing-function: steps(5);
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}

#connect {
  height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 30pt;
}

.blink {
  animation: blink-animation 1s steps(2, start) infinite;
  -webkit-animation: blink-animation 1s steps(2, start) infinite;
}

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}

@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}

