.footer-bg {
  background: linear-gradient(
    90deg,
    var(--purple-darkest) 22%,
    var(--purple) 100%
  );
  border-radius: 15px;
  padding: 45px 40px 45px 60px;
  overflow: hidden;
}

footer h2 {
  font-size: 128px;
  line-height: 135px;
  color: var(--color-white);
  font-weight: 400;
  margin-bottom: 60px;
}

footer h2 span {
  font-weight: bold;
  color: var(--purple-light);
  font-style: italic;
}

footer {
  position: relative;
  z-index: 5;
  background: var(--color-black);
}

.pos-footer {
  color: var(--color-gray-light);
  font-weight: normal;
  font-size: 16px;
  padding: 15px 0;
  display: flex;
  align-items: center;
}

.pos-footer p {
  margin-bottom: 0;
}

.footer-contact {
  position: relative;
  z-index: 2;
}

.footer-contact a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 30px;
  font-weight: 600;
  transition: color 0.2s ease-in-out;
}

.footer-contact a:hover,
.footer-social a:hover {
  color: var(--color-gray-lighter);
}

.footer-contact p {
  color: var(--purple-light);
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0;
}

.footer-social a {
  color: var(--color-white);
  font-size: 24px;
  font-weight: 600;
  position: relative;
  z-index: 2;
  transition: color 0.2s ease-in-out;
}

.footer-star {
  position: absolute;
  top: -230px;
  right: -360px;
}

.footer-star img {
  width: 100%;
  min-width: 900px;
}

.footer-gif {
  position: relative;
}

.footer-gif img,
.footer-gif video {
  width: 100%;
  border-radius: 15px;
  max-height: 31rem;
  object-fit: cover;
}

@media (max-width: 992px) {
  footer h2 {
    font-size: 90px;
    line-height: 100px;
  }
}

@media (max-width: 768px) {
  footer h2 {
    font-size: 80px;
  }

  .footer-star {
    position: absolute;
    top: -27rem;
    right: -160px;
  }

  .footer-star img {
    min-width: 400px;
  }

  .footer-gif {
    margin-top: 25px;
  }

  .footer-social {
    margin-top: 50px;
  }
}

@media (max-width: 428px) {
  footer h2 {
    font-size: 50px;
    line-height: 55px;
    margin-bottom: 40px;
  }

  .footer-social {
    margin-top: 75px;
  }

  .footer-gif img,
  .footer-gif video {
    min-height: 220px;
    object-fit: cover;
    border-radius: 15px;
  }

  .footer-bg {
    padding: 50px 12px 25px 12px;
  }

  .pos-footer p {
    font-size: 10px;
  }

  .footer-contact a {
    font-size: 21px;
  }

  .footer-social a {
    font-size: 20px;
  }

  .footer-star {
    top: -28rem;
    right: -120px;
  }

  .footer-star img {
    max-width: 300px;
  }
}
