* {
  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;
}

header,
section {
  font-size: 1.6rem;
}
@font-face {
  font-family: "bur";
  src: url(assets/BurbankBigCondensed-Black.otf);
}
:root {
  --font-1: "bur";
  --white: #ffffff;
  --black: #000000;
  --nav-height: 80px;
}
.navbar {
  min-height: var(--nav-height);
  width: 100%;
  padding-left: 3%;
  padding-right: 3%;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
  z-index: 5;
}
.page {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  background: radial-gradient(
    77.06% 77.06% at 39.84% 33.3%,
    #d38cfd 0%,
    #8500d3 100%
  );
}

.page-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - var(--nav-height));
  width: 100%;
  position: relative;
}
/* =========top-side======== */

.top-side {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  gap: 2rem;
  padding: 4rem 3% 4rem 3%;
}

/* ========bottom-side======== */
.bottom-side {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex: 1;
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 2rem 3% 0 3%;
}

/* =========heading section======== */
.text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 6;
}

.heading {
  font-weight: 700;
  font-size: 25rem;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff600;
  -webkit-text-stroke: 0.4rem #7e34aa;
}
.heading2 {
  position: relative;
  bottom: 3rem;
}

/* ========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: 2.3px solid #8501d3;
  border-radius: 50%;
  box-shadow: 0px 0.15rem 0.15rem #000000;
}
.btn:hover,
.link-btn:hover {
  border-radius: 10px;
  transform: translateY(-6px);
}

.link-btn img {
  width: 100%;
  height: auto;
}

/* ========copy btn section======== */

.copy-btn-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.copy-btn {
  background-color: var(--white);
  cursor: pointer;
  transition: all 0.4s;
  padding: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 2rem;
  left: -1rem;
  z-index: 5;
  border: 2px solid #8501d3;
  box-shadow: 0px 0.2rem 0.2rem #000000;
  border-radius: 10px;
}
.copy-btn img {
  width: 2.2rem;
  height: auto;
  cursor: pointer;
  transition: all 0.4s;
}
.copy-btn:hover .copy-img {
  transform: scale(1.06);
}
.copy-text {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid #8501d3;
  box-shadow: 0px 0.2rem 0.2rem #000000;
  border-radius: 10px;
  background-color: var(--white);
}
.copy-text p {
  font-weight: 700;
  padding: 1rem;
  font-size: clamp(1rem, 1.3rem, 1.2rem);
  color: #8501d3;
}
/* ========main-img section======== */

.side-img {
  height: auto;
  position: relative;
  z-index: 5;
}
#side-img-1 {
  width: 90%;
  max-width: 50rem;
}
#side-img-2 {
  max-width: 70rem;
  width: 90%;
  margin-left: 10%;
}
.hands {
  position: absolute;
  height: auto;
  z-index: 1;
}
#hands2 {
  max-width: 24rem;
  width: 40%;
  bottom: 10%;
  left: -25%;
}
#hands1 {
  max-width: 20rem;
  width: 20%;
  bottom: 20%;
  right: 0;
}
.paint {
  position: absolute;
  max-width: 14rem;
  width: 20%;
  height: auto;
  z-index: 1;
}
#paint1 {
  top: 0;
  left: 0;
}
#paint2 {
  bottom: 0;
  right: 0;
}

.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: 1140px) {
  #hands1 {
    bottom: 7%;
  }
}

@media (max-width: 850px) {
  .top-side {
    flex-direction: column-reverse;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    padding: 7rem 3% 4rem 2rem;
  }
  #hands1 {
    bottom: unset;
    top: 35%;
  }
  #hands2 {
    max-width: 20rem;
    left: 0%;
    bottom: 0%;
    width: 25%;
  }
  #side-img-2 {
    margin-left: 0;
    width: 100%;
  }
      .heading2 {
    bottom: 0;
  }
}
@media (max-width: 701px) {
  .navbar {
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .copy-text p {
    font-size: 2vmin;
  }
}
@media (max-width: 500px) {
  .heading {
    font-size: 42vw;
    -webkit-text-stroke: 0.4vw #7e34aa;
  }

}
