* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-meadow);
}
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: "gro";
  src: url(assets/GROBOLD.ttf);
}

:root {
  --font-meadow: "gro";
  --white: #ffffff;
  --black: #000000;
  --nav-height: 80px;
}
.navbar {
  min-height: var(--nav-height);
  width: 100%;
  padding-left: 4%;
  padding-right: 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
}
.logo {
  width: 10rem;
  height: auto;
}
.logo img {
  width: 100%;
  height: 100%;
}
.page {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #48752a;
}

.page::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 5rem;
  background-color: #48752a;
  background-repeat: no-repeat;
  background-image: url(assets/bg.png);
  z-index: 6;
}
.page-content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  background-position: center top;
  background-image: url(assets/bg2.png);
  z-index: 1;
}
.page-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  background-position: center top;
  background-image: url(assets/bg1.png);
  z-index: 1;
}

.page-content {
  display: flex;
  justify-content: center;
  min-height: calc(100vh - var(--nav-height));
  width: 95%;
  margin: auto;
  position: relative;
  border-radius: 3rem;
  overflow: hidden;
}
/* =========top-side======== */
.top-side {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 5rem 2% 0 2%;
}

/* =========heading section======== */
.text-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: flex-start;
}
.text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 6;
  gap: 1rem;
  width: 50%;
}

.heading {
  -webkit-text-stroke: 0.5rem #000000;
  font-weight: 500;
  font-size: 10rem;
  line-height: 100%;
  letter-spacing: 0%;
}
.heading2 {
  color: #ffff00;
}

/* ========btns section======== */
.btns-container {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  position: relative;
}
.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;
  border: 1.99px solid #000000;
  background-color: var(--white);
  box-shadow: 0px 0.126rem 0.126rem 0px #000000;
}
.btn:hover,
.link-btn:hover {
  transform: translateY(-8px);
}

.link-btn img {
  width: 100%;
  height: auto;
}
/* ========copy btn section======== */

.copy-btn-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 10;
  gap: 1.5rem;
  margin-top: 2rem;
}

.copy-btn {
  font-size: 2.6rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s;
  background-color: #ffff00;
  padding: 1rem;
  -webkit-text-stroke: 0.2rem #000000;
  text-transform: uppercase;
}

.copy-text p {
  font-size: clamp(1rem, 1.3rem, 1.5rem);
  text-transform: uppercase;
  font-weight: 500;
}
/* ========main-img section======== */
.side-img {
  height: auto;
  width: 100%;
  max-width: 55rem;
  position: relative;
  bottom: -1rem;
  left: 2rem;
  z-index: 7;
  margin-top: auto;
}
.pill {
  position: absolute;
  max-width: 10rem;
  width: 15%;
  bottom: 22%;
  height: auto;
  z-index: 8;
}
#g-pill {
  right: 18%;
}
#r-pill {
  left: 18%;
}
.side-img .img {
  width: 100%;
  height: 100%;
}
.white-box {
  position: absolute;
  z-index: 8;
  top: 0;
  bottom: 0;
  width: 1rem;
  height: 100%;
}
/* responsiveness */
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
}
@media (max-width: 400px) {
  html {
    font-size: 50%;
  }
}
@media (max-width: 1000px) {
  .heading {
    font-size: 9rem;
  }
}
@media (max-width: 815px) {
  .heading {
    font-size: 9.5vw;
    -webkit-text-stroke: 0.3vw #000000;
  }
  .copy-text p {
    font-size: 2vmin;
  }
}
@media (max-width: 550px) {
  .side-img {
    left: 1rem;
  }
  .logo {
    width: 8rem;
  }
}
