@import url("https://fonts.googleapis.com/css?family=VT323");
html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  background-color: #222222;
}

@keyframes terminal-glitch {
  0% {
    transform: scale(1, 1.5);
  }
  50% {
    transform: scale(1, 1.2);
  }
  100% {
    transform: scale(1.2, 1);
  }
}
.terminal-glitch {
  width: 100%;
  height: 100%;
  box-shadow: inset 0px 0px 1px 1px rgba(64, 64, 64, 0.1);
  background: radial-gradient(ellipse at center, #5c2f00 0%, black 100%);
  transform-origin: 50% 50%;
  transform: scale(1.03);
  animation: terminal-glitch 0.1s linear infinite;
  opacity: 0.4;
  position: fixed;
  z-index: -1;
}

.terminal {
  position: absolute;
  z-index: 1;
  padding: 15px;
  top: 3%;
  right: 3%;
  bottom: 3%;
  left: 3%;
  overflow-x: hidden;
  box-sizing: border-box;
  background-color: transparent;
  border-radius: 20px;
  border: 15px solid;
  border-bottom-color: #222222;
  border-left-color: #050505;
  border-right-color: #050505;
  border-top-color: #111111;
  box-shadow: inset 0 0 10rem #020202, inset 0 0 3rem black, 0 0 10rem black;
}
.terminal::-webkit-scrollbar-track {
  border-radius: 0;
  background-color: #212121;
}
.terminal::-webkit-scrollbar {
  width: 10px;
  background-color: lighter(#212121, 50%);
}
.terminal::-webkit-scrollbar-thumb {
  border-radius: 2px;
  box-shadow: inset 0 0 5px black;
  background-color: #444;
}
@keyframes type {
  from {
    width: 0ch;
  }
  to {
    width: 54ch;
  }
}
.terminal p {
  font-size: 24px;
  margin: 1px 0;
  white-space: nowrap;
  overflow: hidden;
  animation: type 2.5s steps(60, end) backwards;
  color: #F57C00;
  font-family: "VT323", monospace;
}

.terminal a {
  font-size: 24px;
  margin: 1px 0;
  white-space: nowrap;
  overflow: hidden;
  animation: type 2.5s steps(60, end) backwards;
  color: #F57C00;
  font-family: "VT323", monospace;
}

.terminal p:nth-child(1) {
  animation-delay: 2.5s;
}
.terminal p:nth-child(2) {
  animation-delay: 5s;
}
.terminal p:nth-child(3) {
  animation-delay: 7.5s;
}
.terminal p:nth-child(4) {
  animation-delay: 10s;
}
.terminal p:nth-child(5) {
  animation-delay: 12.5s;
}
.terminal p:nth-child(6) {
  animation-delay: 15s;
}
.terminal p:nth-child(7) {
  animation-delay: 17.5s;
}
.terminal p:nth-child(8) {
  animation-delay: 20s;
}
.terminal p:nth-child(9) {
  animation-delay: 22.5s;
}
.terminal p:nth-child(10) {
  animation-delay: 25s;
}
.terminal p:nth-child(11) {
  animation-delay: 27.5s;
}
.terminal p:nth-child(12) {
  animation-delay: 30s;
}
.terminal p:nth-child(13) {
  animation-delay: 32.5s;
}
.terminal p.break {
  margin: 1px 0 15px 0;
}