header {
  background: rgba(169, 169, 169, 0.115);
  position: relative;
}

.gradient-line {
  position: absolute;
  width: 100%;
  height: 3%;
  background: linear-gradient(45deg, rgb(255, 0, 0) 0%, rgb(232, 127, 46) 50%, rgb(255, 0, 0));
  background-size: 400% 400%;
  animation: name-animate 10s ease infinite;
}

#header-container {
  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%;
  padding: 2vw;
}
#header-container h1 {
  font-size: 3vw;
  font-family: CascadiaCode;
  margin: 0;
  text-align: center;
}

#main-content-container {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 80vw;
  margin-left: auto;
  margin-right: auto;
}

#text-box p {
  font-size: 18px;
}
#text-box {
  padding: 20px;
}
#text-box a {
  color: rgba(255, 255, 255, 0);
  text-decoration: unset;
  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;
  background-size: 400% 400%;
  animation: name-animate 10s ease infinite;
  font-weight: 400;
}
#text-box a:hover {
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.5);
}

@media only screen and (max-width: 750px) {
  #header-container h1 {
    font-size: 40px;
  }
  #main-content-container {
    max-width: 95vw;
  }
}/*# sourceMappingURL=sections.css.map */