* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-1);
}
html {
  /* 1rem = 10px */
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body,
html {
  width: 100%;
  height: 100%;
}
body {
  width: 100%;
  overflow-x: hidden;
  background: linear-gradient(
    180deg,
    #3cfff4 -37.44%,
    #619ad7 31.04%,
    #bd4ff6 92.04%
  );
}

header,
section {
  font-size: 1.6rem;
}
@font-face {
  font-family: "gro";
  src: url(assets/GROBOLD.ttf);
}
:root {
  --font-2: "Ranchers", sans-serif;
  --font-1: "gro";
  --white: #ffffff;
  --black: #000000;
}

.page {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    180deg,
    #3cfff4 -37.44%,
    #619ad7 31.04%,
    #bd4ff6 92.04%
  );
}

.page-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  position: relative;
}
/* =========top-side======== */
.top-side {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 4rem 2% 4rem 2%;
  gap: 4rem;
}
/* ========bottom-side======== */
.bottom-side {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex: 1;
  position: relative;
  z-index: 4;
  width: 100%;
  padding: 8rem 2% 0 2%;
  overflow: hidden;
}

/* =========heading section======== */
.text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 6;
  gap: 2.5rem;
}

.heading {
  font-size: 13rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(
    90deg,
    #c647f9 0%,
    #6093d7 51.44%,
    #00ae8d 100%
  );
  color: var(--white);
  -webkit-text-stroke-color: transparent;
  -webkit-text-stroke-width: calc(1em / 12);
}

/* ========btns section======== */

.btns-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 1rem;
}
.link-btn {
  padding: 0 1rem;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s;
  z-index: 10;
  background-color: var(--white);
  border: 2px solid #9d1ae0;
  border-radius: 50%;
  box-shadow: 0px 0.15rem 0.15rem #000000;
}
.btn:hover,
.link-btn:hover {
  transform: translateY(-8px);
}

.link-btn img {
  width: 100%;
  height: auto;
}

/* ========copy btn section======== */
.btn-cover {
  width: 100%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 2rem 2% 2rem 2%;
}
.copy-btn-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.copy-btn {
  font-size: 3rem;
  font-weight: 500;
  color: #bd4ff6;
  cursor: pointer;
  transition: all 0.4s;
  position: relative;
  z-index: 5;
}
.copy-btn:hover .copy-img {
  transform: scale(1.06);
}
.copy-text {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--white);
}

.copy-text p {
  font-weight: 500;
  font-size: clamp(1rem, 1.3rem, 1.5rem);
  color: #bd4ff6;
}
/* ========main-img section======== */
.img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}
.side-img {
  height: auto;
  width: 90%;
  position: relative;
  z-index: 5;
}
#side-img-1 {
  max-width: 50rem;
}

#side-img-2 {
  width: 100%;
  max-width: 60rem;
  position: relative;
  bottom: -10px;
}
#side-img-3 {
  width: 40%;
  max-width: 35rem;
  align-self: flex-start;
  position: relative;
  left: 14rem;
  top: 4rem;
  margin-left: -14rem;
}
#side-img-4 {
  width: 40%;
  max-width: 35rem;
  align-self: flex-start;
  right: 14rem;
  top: 4rem;
  margin-right: -14rem;
}
.left-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  max-width: 45rem;
  height: auto;
}
.right-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  max-width: 45rem;
  height: auto;
}
.right-img img,
.left-img img,
.side-img .img {
  width: 100%;
  height: 100%;
}

/* responsiveness */
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
}
@media (max-width: 400px) {
  html {
    font-size: 50%;
  }
}

@media (max-width: 600px) {
  .heading {
    font-size: 18vw;
  }
  .left-img {
    width: 60%;
  }
  .right-img {
    width: 60%;
  }
  .copy-btn-box {
    flex-direction: column;
    gap: 1rem;
  }
  .copy-text p {
    font-size: 2.5vmin;
  }
}
@media (max-width: 450px) {
  #side-img-3 {
    width: 30%;
    position: absolute;
    left: 0;
    top: 14%;
    margin-left: 0;
  }
  #side-img-4 {
    width: 33%;
    position: absolute;
    right: 0;
    top: 14%;
    margin-right: 0;
  }
}
