body {
  background-position: center;
  background-color: var(--background);
  color: var(--color);

  background-color: #030a1d;
  background-image: repeating-linear-gradient(
      90deg,
      rgba(175, 238, 238, 0.02) 0,
      rgba(175, 238, 238, 0.02) 1px,
      transparent 1px,
      transparent 40px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(175, 238, 238, 0.02) 0,
      rgba(175, 238, 238, 0.02) 1px,
      transparent 1px,
      transparent 40px
    );

  background-size: 40px 40px, 40px 40px, cover, cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

header {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1%;
  background-color: var(--header-background);
}

.header-link {
  color: var(--color);
}

.header-link:hover {
  color: var(--link-color);
}

.welcome-banner {
  margin-top: 70px;
  height: 70vh;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Quicksand", sans-serif;
  color: var(--light-color);
}

.welcome-title {
  width: 60%;
  text-align: center;
}

.welcome-title p {
  font-family: "Galmine";
  font-size: 50px;
  font-weight: 400;
}

.blur-ball-container {
  width: 40%;
}

.content-frame {
  border-radius: 5px;
  background-color: #58408d;
  padding: 10px;
  margin: 10px 9px;
}

.index-content {
  border-radius: 4px;
  padding: 25px;
  border: 2px solid #bbaaeb;
}

.index-content h2 {
  text-align: center;
  font-family: "Galmine";
  font-weight: 400;
  font-size: 32px;
  color: #e0d4ff;
}

.content {
  display: flex;
  gap: 10px;
}

.content-item {
  width: 33%;
  margin: 10px;
  padding: 30px;
  background-color: #0b112d;
  border-radius: 3px;
  min-height: 200px;
  max-height: 300px;
  border: 1px solid #58408d;
}

.content-item > div > h2 {
  padding-bottom: 13px;
  text-align: center;
  font-family: "Galmine";
  font-weight: 400;
}

.content-item > div > p {
  text-align: center;
}

.overview {
  display: flex;
  gap: 20px;
}

.overview .overview-frame {
  padding: 8px;
  width: 50%;
  border-radius: 3px;
  background-color: #b9a0fd;
}

.overview .overview-frame > div {
  padding: 30px;
  border-radius: 4px;
  border: 2px solid #58408d;
  color: #000;
}

@media screen and (min-width: 1400px) {
  .content,
  .content-frame {
    margin: 50px 14%;
  }
}

@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }

  .welcome-banner {
    flex-direction: column;
    height: 60dvh;
  }

  .content,
  .content-frame {
    margin: 10px;
  }

  .content {
    display: inline;
  }

  .content-item {
    width: auto;
    margin: 10px;
    padding: 20px;
    height: auto;
  }

  .welcome-title {
    width: 100%;
  }

  .index-content {
    padding: 10px;
  }

  .overview {
    display: inline;
  }

  .overview .overview-frame {
    margin-top: 10px ;
    width: 100%;
  }
}
