body {
  background: #080326;
  color: white;
  font-family: "Mulish", sans-serif;
}

.header {
  height: 8vh;
  width: 100%;
  background-color: #110d2e;
  display: flex;
  justify-content: center;
  z-index: 5;
}

.logo-container {
  width: clamp(12.5rem, 20vw, 16.3rem);
  z-index: 5;
}

@media screen and (max-width: 100rem) {
  .logo-container {
    width: clamp(9rem, 25vw, 12.5rem);
  }
}

.hero {
  background-image: linear-gradient(
      116.85deg,
      rgba(63, 94, 251, 0.6) 57.14%,
      #110d2e 100%
    ),
    url("../assets/hero.png");
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: end;
}
.mobile-hero {
  display: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: end;
  padding: 0 3rem 0 0;
  margin-top: clamp(12rem, 38vh, 42rem);
}

.hero-content h2 {
  font-size: clamp(2rem, 2vw, 5rem);
  line-height: 150%;
  text-align: right;
  margin-bottom: 3rem;
}

.twitch-icon-in-header {
  display: inline-block;
  width: clamp(32px, 4vw, 64px);
  margin-top: 1rem;
}

@media screen and (max-width: 100rem) {
  .hero {
    background-image: unset;
    height: auto;
    justify-content: center;
  }
  .hero-content {
    align-items: center;
    margin-top: 0;
    padding: 0;
  }
  .twitch-icon-in-header {
    margin-top: 0;
  }
  .hero-content h2 {
    text-align: center;
    margin-bottom: 1rem;
  }
  .mobile-hero {
    display: block;
    z-index: -1;
  }
}

.about {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin-bottom: 2rem;
}

.info-block {
  display: flex;
  gap: 8rem;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 27px;
  text-align: center;
  margin: 2rem 10rem;
  border-radius: 15px;
  padding: 1.5rem 4rem;
  background: linear-gradient(
    116.85deg,
    rgba(22, 25, 32, 0.15) 0%,
    rgba(29, 172, 237, 0.15) 100%
  );
}

@media screen and (max-width: 100rem) {
  .info-block {
    flex-direction: column;
    gap: 4rem;
    margin: 2rem 0;
    width: 80vw;
    padding: 1.5rem;
  }
}

.about-image {
  width: 200px;
}

.youtube {
  width: 58.6rem;
  height: 106.5px;
  border-radius: 15px;
  background: linear-gradient(
    116.85deg,
    rgba(252, 70, 107, 0.3) 0%,
    rgba(63, 94, 251, 0.3) 100%
  );
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

@media screen and (max-width: 100rem) {
  .youtube {
    width: 80vw;
    flex-direction: column;
    height: auto;
    gap: 2rem;
    padding: 2rem;
    text-align: center;
  }
}

.youtube > h4 {
  margin: 0;
  font-weight: bold;
  font-size: 2rem;
}

.discord {
  height: clamp(18rem, 50vh, 24.7rem);
  width: 100%;
  background-color: #7687d4;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 100rem) {
  .discord {
    height: clamp(18rem, 20vh, 24.7rem);
  }
}

.button {
  border-radius: 52px;
  border: 0;
  outline: 0;
  background-color: #07a6ef;
  color: white;
  font-family: "Mulish", sans-serif;
  padding: 0.6rem 1rem;
  cursor: pointer;
  text-decoration: none;
}

.footer {
  background: linear-gradient(
    116.85deg,
    rgba(14, 15, 19, 0.5) 0%,
    rgba(4, 172, 254, 0.2) 100%
  );

  height: 8.3rem;
}

.footer-section {
  width: 82.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

@media screen and (max-width: 100rem) {
  .footer-section {
    width: 80vw;
    justify-content: space-evenly;
    margin: 0 auto;
  }

  .copyright {
    display: none;
  }
}

.social-container {
  background: linear-gradient(
    116.85deg,
    rgba(252, 70, 107, 0.4) 0%,
    rgba(63, 94, 251, 0.4) 100%
  );
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 7px;
}

.discord-social {
  background: linear-gradient(116.85deg, #fc466b 0%, #3f5efb 100%);
}
