* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  color: var(--white);
  text-transform: uppercase;
}
html {
  /* 1rem = 10px */
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body,
html {
  width: 100%;
  height: 100%;
}
body {
  width: 100%;
  overflow-x: hidden;
  background-color: #3d3e3f;
}

header,
section {
  font-size: 1.6rem;
}

:root {
  --font-1: "Lilita One", sans-serif;
  --font-2: "Londrina Solid", sans-serif;
  --white: #ffffff;
  --black: #000000;
  --nav-height: 90px;
}
.navbar {
  min-height: var(--nav-height);
  background: #00000066;
  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;
  z-index: 99;
}
.page {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.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: 6;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  padding: 5rem 4% 0 4%;
  margin-bottom: -18rem;
}
/* ========bottom-side======== */
.bottom-side {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex: 1;
  position: relative;
  width: 100%;
}
/* =========heading section======== */

.heading {
  font-size: 25rem;
  font-family: var(--font-1);
  line-height: 100%;
  text-align: center;
  font-weight: 400;
  color: #e3b61a;
  -webkit-text-stroke: 0.1rem var(--black);
}
.para {
  font-family: var(--font-2);
  font-weight: 400;
  font-size: 6rem;
  line-height: 100%;
  margin-bottom: 2rem;
  text-align: center;
}
/* ========btns section======== */
.btns-container {
  display: flex;
  gap: 1.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;
}
.btn:hover,
.link-btn:hover {
  transform: translateY(-5px);
  scale: 1.04;
}

.link-btn img {
  width: 100%;
  height: auto;
}
/* ========copy btn section======== */

.copy-btn-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
  gap: 1.5rem;
}

.copy-btn {
  font-size: 4.5rem;
  font-family: var(--font-1);
  font-weight: 400;
  cursor: pointer;
  transition: all 0.4s;
  color: #e3b61a;
}
.copy-btn:hover {
  scale: 1.04;
  transform: translateY(-5px);
}
.copy-text p {
  font-size: 2vmin;
  font-family: var(--font-1);
  font-weight: 400;
}
/* ========main-img section======== */
.main-img {
  height: auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.main-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: 1280px) {
  .top-side {
    margin-bottom: -11rem;
  }
}
@media (max-width: 1050px) {
  .top-side {
    margin-bottom: -9rem;
  }
}
@media (max-width: 800px) {
  .top-side {
    margin-bottom: -7rem;
  }
}
@media (max-width: 750px) {
  .navbar {
    justify-content: center;
    align-items: center;
  }
  .top-side {
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
}
@media (max-width: 600px) {
  .heading {
    font-size: 22rem;
  }
  .para {
    font-size: 5rem;
  }
}
@media (max-width: 500px) {
  .heading {
    font-size: 20rem;
  }
  .para {
    font-size: 4.5rem;
  }
}
@media (max-width: 450px) {
  .heading {
    font-size: 18rem;
  }
  .para {
    font-size: 4rem;
  }
  .copy-btn {
    font-size: 4rem;
  }
}
@media (max-width: 370px) {
  .heading {
    font-size: 15rem;
  }
}
@media (max-width: 320px) {
  .heading {
    font-size: 13rem;
  }
}
/* =========loader======== */
.loader-wrap {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1000;
  background-color: var(--white);
}
.loader {
  width: fit-content;
  font-weight: bold;
  font-family: monospace;
  font-size: 30px;
  background: radial-gradient(circle closest-side, #000 94%, #0000)
    right/calc(200% - 1em) 100%;
  animation: l24 1s infinite alternate linear;
}

.loader::before {
  content: "Loading...";
  line-height: 1em;
  color: #0000;
  background: inherit;
  background-image: radial-gradient(circle closest-side, #fff 94%, #000);
  -webkit-background-clip: text;
  background-clip: text;
}

@keyframes l24 {
  100% {
    background-position: left;
  }
}
