@font-face {
  font-family: CascadiaCode;
  src: url("../fonts/CascadiaCode.ttf");
}
@font-face {
  font-family: SourceCodePro;
  src: url("../fonts/SourceCodePro.ttf");
}
@font-face {
  font-family: SourceCodeProItalic;
  src: url("../fonts/SourceCodePro-Italic.ttf");
}
@keyframes name-animate {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
body {
  font-family: SourceCodePro;
  color: white;
  background: #090000;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 0);
  background-size: 20px 20px;
  background-position: center;
  background-attachment: fixed;
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
}
body #content-container {
  overflow: hidden;
  height: 100%;
  width: 100%;
  position: relative;
}
body #content-container #center-content #links-container {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 18vh;
  position: relative;
  overflow: hidden;
}
body #content-container #center-content header #name {
  background: linear-gradient(45deg, rgb(255, 0, 0) 0%, rgb(232, 127, 46) 50%, rgb(255, 0, 0));
  -webkit-background-clip: text;
          background-clip: text;
  color: rgba(0, 0, 0, 0);
  animation: name-animate 10s ease infinite;
  background-size: 400% 400%;
}
body #content-container #center-content header #name h1 {
  font-size: 6vw;
  font-family: CascadiaCode;
  margin: 0;
}
body #content-container #center-content header h2 {
  font-family: SourceCodeProItalic;
  font-weight: 400;
  font-size: 1.6vw;
}
body #content-container #center-content header #welcome {
  text-align: right;
  margin-right: -3vw;
}
body #content-container #center-content header #hello {
  margin-left: -3vw;
}
body #content-container #center-content {
  position: absolute;
  top: 50%;
  right: 50%;
  translate: 50% -50%;
}

#links a {
  position: relative;
  margin-left: 2vw;
  margin-right: 2vw;
  color: rgba(0, 0, 0, 0);
  text-decoration: unset;
  background: linear-gradient(180deg, rgb(255, 255, 255) 50%, rgb(255, 64, 0) 50% 75%, rgb(232, 127, 46) 100%);
  background-size: 100% 200%;
  -webkit-background-clip: text;
          background-clip: text;
  background-repeat: no-repeat;
  background-position: top;
  transition: 0.2s;
  font-size: 2vw;
  font-weight: 400;
  display: inline-block;
}
#links a:hover {
  background-position: bottom !important;
}

@media only screen and (max-width: 750px) {
  #hello {
    display: none;
  }
  #welcome {
    display: none;
  }
  #name h1 {
    font-size: 60px !important;
  }
  #links a {
    font-size: 23px;
    font-weight: 400;
    display: block;
    padding-bottom: 10px;
  }
  #links a:hover {
    background-position: bottom !important;
  }
}/*# sourceMappingURL=main.css.map */