@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@200;700&display=swap");
/* default theme variables */
:root {
  --background-color: #E9EFC1;
  --main-color: #141F21;
  --highlight-color: #275251;
}

/* printer variables */
@media print {
  :root {
    --background-color: #fff;
    --main-color: #000;
    --highlight-color: #555;
  }
}

/* dark mode variables */
@media screen and (prefers-color-scheme: dark) {
  :root {
    --background-color: #000;
    --main-color: #888;
    --highlight-color: #ddd;
  }
}

/* global styles */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: background-color 2.5s ease 0ms, color 125ms ease 0ms;
  transition: background-color 2.5s ease 0ms, color 125ms ease 0ms;
}

body {
  font-family: Raleway, sans-serif;
  color: var(--main-color);
  background-color: var(--background-color);
}

.app {
  font-family: Raleway, sans-serif;
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

a {
  color: var(--main-color);
  text-decoration: none;
}

a:hover {
  color: var(--highlight-color);
}

.link {
  position: relative;
  -webkit-transition: -webkit-clip-path 275ms ease;
  transition: -webkit-clip-path 275ms ease;
  transition: clip-path 275ms ease;
  transition: clip-path 275ms ease, -webkit-clip-path 275ms ease;
}

.link:hover span::before, .link:focus span::before {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.link span {
  position: relative;
  display: inline-block;
  color: var(--main-color);
}

.link span::before {
  position: absolute;
  content: attr(data-content);
  color: var(--highlight-color);
  text-decoration: underline;
  -webkit-text-decoration-color: var(--highlight-color);
          text-decoration-color: var(--highlight-color);
  -webkit-clip-path: polygon(0 0, 0 0, 0% 100%, 0 100%);
          clip-path: polygon(0 0, 0 0, 0% 100%, 0 100%);
  -webkit-transition: -webkit-clip-path 275ms ease;
  transition: -webkit-clip-path 275ms ease;
  transition: clip-path 275ms ease;
  transition: clip-path 275ms ease, -webkit-clip-path 275ms ease;
}

span.dotted::before {
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
}

span.dashed::before {
  -webkit-text-decoration-style: dashed;
          text-decoration-style: dashed;
}

span.double::before {
  -webkit-text-decoration-style: double;
          text-decoration-style: double;
}

span.wavy::before {
  -webkit-text-decoration-style: wavy;
          text-decoration-style: wavy;
}

span.line-through::before {
  -webkit-text-decoration-line: line-through;
          text-decoration-line: line-through;
}

/* element specific styles */
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50vh;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header h1 {
  font-size: 9vmin;
  font-weight: 200;
  height: 12vmin;
  padding: 0 20px;
  overflow: hidden;
  cursor: help;
}

header h1 > span {
  display: inline-block;
  position: relative;
  top: 12vmin;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  color: var(--main-color);
}

header h1 > span:nth-child(-n+10) {
  font-weight: 800;
  color: var(--highlight-color);
}

nav {
  font-size: 0.8rem;
  line-height: 2.5rem;
  width: 100vw;
  position: fixed;
  top: 0;
  background-color: var(--background-color);
}

nav div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 3rem;
}

nav div h1 {
  font-weight: 200;
  font-size: 1.2rem;
  color: var(--main-color);
}

nav div h1 strong {
  font-size: 800;
  text-transform: uppercase;
  color: var(--highlight-color);
}

nav div ul {
  list-style-type: none;
  line-height: 2.5rem;
}

nav div ul li {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
}

nav div ul li a {
  padding: 0 20px;
  line-height: 2.5rem;
}

main {
  color: var(--main-color);
  font-family: Raleway, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  justify-items: center;
  font-size: 2vmin;
}

main .console {
  overflow: hidden;
  /* Ensures the content is not revealed until the animation */
  border-right: 0.15vmin solid var(--highlight-color);
  /* The typwriter cursor */
  white-space: nowrap;
  /* Keeps the content on a single line */
  margin: 0;
  /* Gives that scrolling effect as the typing happens */
  letter-spacing: .15vmin;
  /* Adjust as needed */
  -webkit-animation: typing 2.8s steps(40, end), blink-caret 0.75s step-end infinite;
          animation: typing 2.8s steps(40, end), blink-caret 0.75s step-end infinite;
}

main .console-new {
   margin: 0;
   letter-spacing: .15vmin;
}

main .container {
   display: flex;
   font-family: 'Courier New', Courier, monospace;
}
main .container2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: 'Courier New', Courier, monospace;
}

footer {
  height: 3rem;
  line-height: 3rem;
  width: 100vw;
  color: var(--main-color);
  font-size: 0.8rem;
  text-align: center;
  position: absolute;
  bottom: 0px;
}

footer a {
  padding: 0 10px;
  line-height: 2rem;
}

footer i {
  font-size: 1rem;
}

@-webkit-keyframes titleSlide {
  0% {
    top: 15vmin;
    opacity: 0;
    pointer-events: none;
  }
  5% {
    -webkit-transform: scale(0.75, 1.25);
            transform: scale(0.75, 1.25);
  }
  50% {
    top: -1vmin;
  }
  55% {
    -webkit-transform: scale(1.25, 0.75);
            transform: scale(1.25, 0.75);
  }
  75% {
    -webkit-transform: scale(0.75, 1.25);
            transform: scale(0.75, 1.25);
  }
  80% {
    top: 0vmin;
  }
  90% {
    -webkit-transform: scale(1.25, 0.75);
            transform: scale(1.25, 0.75);
  }
  100% {
    top: 1vmin;
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    pointer-events: visible;
  }
}

@keyframes titleSlide {
  0% {
    top: 15vmin;
    opacity: 0;
    pointer-events: none;
  }
  5% {
    -webkit-transform: scale(0.75, 1.25);
            transform: scale(0.75, 1.25);
  }
  50% {
    top: -1vmin;
  }
  55% {
    -webkit-transform: scale(1.25, 0.75);
            transform: scale(1.25, 0.75);
  }
  75% {
    -webkit-transform: scale(0.75, 1.25);
            transform: scale(0.75, 1.25);
  }
  80% {
    top: 0vmin;
  }
  90% {
    -webkit-transform: scale(1.25, 0.75);
            transform: scale(1.25, 0.75);
  }
  100% {
    top: 1vmin;
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    pointer-events: visible;
  }
}

@-webkit-keyframes show-nav {
  from {
    -webkit-clip-path: circle(0% at 100% 0%);
            clip-path: circle(0% at 100% 0%);
  }
  to {
    -webkit-clip-path: circle(100%);
            clip-path: circle(100%);
  }
}

@keyframes show-nav {
  from {
    -webkit-clip-path: circle(0% at 100% 0%);
            clip-path: circle(0% at 100% 0%);
  }
  to {
    -webkit-clip-path: circle(100%);
            clip-path: circle(100%);
  }
}

@-webkit-keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@-webkit-keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: var(--highlight-color);
  }
}

@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: var(--highlight-color);
  }
}
/*# sourceMappingURL=style.css.map */