* {
  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: radial-gradient(
    62.96% 62.96% at 67.34% 29.44%,
    #ffe9d7 0%,
    #ffc191 100%
  );
}

header,
section {
  font-size: 1.6rem;
}
@font-face {
  font-family: "basket";
  src: url(assets/Basketball.otf);
}

:root {
  --font-1: "basket";
  --font-2: "Montserrat", sans-serif;
  --white: #ffffff;
  --black: #000000;
  --color-1: #30beff;
}

.page {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  background: radial-gradient(
    62.96% 62.96% at 67.34% 29.44%,
    #ffe9d7 0%,
    #ffc191 100%
  );
}
.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%;
}
/* ========bottom-side======== */
.bottom-side {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: flex-end;
  gap: 2rem;
  flex: 1;
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 2rem 2% 0 2%;
}

/* =========heading section======== */
.text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 6;
}
#text1 {
  gap: 2rem;
}
#text2 {
  align-items: flex-start;
  justify-content: flex-start;
  align-self: center;
  margin-bottom: 3rem;
}
.heading {
  text-transform: uppercase;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0%;
  white-space: nowrap;
}
.heading1 {
  font-size: 25rem;
  -webkit-text-stroke: 0.7rem #d59c71;
}
.heading2 {
  position: relative;
  bottom: -4rem;
  font-size: 16rem;
  -webkit-text-stroke: 0.4rem #d59c71;
}
.heading3 {
  font-size: 30rem;
  -webkit-text-stroke: 0.8rem #d59c71;
}
.footer {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 1rem;
  z-index:6;
}
.footer p {
  font-family: var(--font-2);
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
}
/* ========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;
  border: 0.55px solid #ffffff;
  z-index: 10;
  background-color: var(--white);
  box-shadow: 0px 0.162rem 0.162rem #000000;
}
.btn:hover,
.link-btn:hover {
  transform: translateY(-8px);
}

.link-btn img {
  width: 100%;
  height: auto;
}

/* ========copy btn section======== */

.copy-btn-box {
  display: flex;
  justify-content: center;
  align-items: stretch;
  position: relative;
  z-index: 5;
  gap: 1rem;
}

.copy-btn {
  padding: 1rem;
  align-content: center;
  border: 0.85px solid #ffffff;
  font-size: 4rem;
  font-weight: 400;
  background-color: var(--white);
  cursor: pointer;
  color: var(--black);
  transition: all 0.4s;
  box-shadow: 0 0.252rem 0.252rem #000000;
}
.copy-btn:hover {
  box-shadow: 0px 0px 10px var(--white);
  scale: 0.99;
}
.copy-text {
  align-content: center;
  text-align: center;
  background-color: var(--white);
  border: 0.85px solid #ffffff;
  box-shadow: 0 0.252rem 0.252rem #000000;
}

.copy-text p {
  padding: 1rem;
  font-weight: 400;
  font-size: clamp(1rem, 1.5rem, 3rem);
  color: var(--black);
}
/* ========main-img section======== */
.side-img {
  height: auto;
  width: 95%;
  position: relative;
  z-index: 5;
}
#side-img-1 {
  max-width: 60rem;
}

#side-img-2 {
  max-width: 50rem;
  position: relative;
  bottom: -6px;
}

.side-img .img {
  width: 100%;
  height: 100%;
}

.banana {
  position: absolute;
  width: 6rem;
  height: auto;
}
#banana1 {
  right: 0;
}
#banana2 {
  top: 0;
  right: 15%;
  transform: rotate(122.28deg);
}
#banana3 {
  top: 15%;
  left: 4%;
  transform: rotate(-48deg);
}
#banana4 {
  top: 15%;
  right: 5%;
  transform: rotate(138deg);
}
#banana5 {
  bottom: 30%;
  left: -10%;
  transform: rotate(-70deg);
}
#banana6 {
  bottom: 0;
  right: 0;
  transform: rotate(10deg);
}
#banana7 {
  bottom: 5%;
  left: 6%;
  transform: rotate(10deg);
}

/* responsiveness */
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
}
@media (max-width: 400px) {
  html {
    font-size: 50%;
  }
}

@media (max-width: 1150px) {
  .heading1 {
    font-size: 21vw;
    -webkit-text-stroke: 0.6vw #d59c71;
  }
  .heading2 {
    font-size: 15rem;
  }
  .heading3 {
    font-size: 26rem;
  }
}
@media (max-width: 950px) {
  .heading2 {
    font-size: 14rem;
  }
  .heading3 {
    font-size: 25rem;
  }
}

@media (max-width: 851px) {
  .bottom-side {
    align-items: center;
    flex-direction: column-reverse;
    gap: 0;
  }
  #banana7 {
    bottom: 0;
    left: 2%;
  }
  #banana5 {
    left: -5%;
  }
}

@media (max-width: 600px) {
  #text2 {
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
  }
  #banana3 {
    top: 4%;
  }
  #banana4 {
    top: 5%;
  }
  #banana5 {
    left: -3%;
  }
  .copy-text p {
    font-size: 3vmin;
  }
  .copy-btn-box {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
}
@media (max-width: 520px) {
  .banana {
    width: 5rem;
  }
  .heading2 {
    bottom: -4vw;
    font-size: 28vw;
    -webkit-text-stroke: 0.7vw #d59c71;
  }
  .heading3 {
    font-size: 42vw;
    -webkit-text-stroke: 1.3vw #d59c71;
  }
  .footer p{
      font-size:2vw;
  }
}
@media (max-width: 400px) {
  .banana {
    width: 4rem;
  }
}
