@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@200;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Yusei+Magic");

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track-piece {
  background-color: #393939;
}

::-webkit-scrollbar-thumb {
  background-color: #ffffff;
}

html {
  scrollbar-color: #ffffff #393939;
  scrollbar-width: thin;
}

body {
  position: relative;
  margin: 0;
  font-family: "Source Sans Pro";
  color: white;
  background: #000000;
  font-weight: 200;
  text-shadow: 0px 0px 5px black;
  width: 100vw;
  height: 100vh;
}
#container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.flex-container-title {
  font-size: 22px;
  font-weight: 900;
  border-bottom: 1px solid white;
  margin: 32px;
  margin-right: 96px;
}
#flex-container {
  display: flex;
  flex-wrap: wrap;
}
.module {
  margin: 64px;
  padding: 32px;
  border: 1px solid white;
}
.module-title {
  font-size: 22px;
  font-weight: 900;
}
.module-text {
  font-size: 18px;
  font-family: "Source Code Pro";
  border-top: 1px solid white;
}

#ascii-banner-text {
  background: -webkit-linear-gradient(
    -45deg,
    hsl(14, 100%, 50%),
    hsl(337, 100%, 50%),
    hsl(197, 100%, 50%),
    hsl(167, 100%, 50%)
  );
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#home-link {
  position: absolute;
  top: 40px;
  right: 40px;
}
#home-link-a {
  color: white;
  text-decoration: none;
  font-size: 32px;
  font-weight: 400;
}
#home-icon {
  width: 32px;
  height: 32px;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
