@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat&display=swap');

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto Condensed', sans-serif;
  color: white;
}

body {
  height: 100%;
  width: 100%;
}

.behind {
  width: 100%;
  height: 100vh;
}


.front {
  position: absolute;
  inset: 0;
  height: 100vh;
  width: 75rem;
  margin: 0% auto 0% auto;
  z-index: -1;
}


header {
  margin: 2.5rem auto 0% auto;
}

nav img {
  height: 3.5rem;
  width: max-content;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 1.5rem;
}

nav a {
  text-decoration: none;
  color: white;
}

.hero {
  height: 80vh;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.hero-btn {
  background-color: white;
  border: none;
  padding: 0.7rem;
  font-family: 'Caveat', cursive;
  font-weight: bold;
  font-size: 1.4em;
  cursor: pointer;
  margin-top: 6rem;

}

.hero-btn:hover {
  opacity: 80%;
}

.hero-section-1 {
  width: 70vw;
}

.hero-section-2 {
  width: 15vw;
  font-size: smaller;
  text-align: justify;
  /* opacity: 80%; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-section-2 .heading {
  font-size: medium;
}

.hero-section-2 img {
  margin: 1.2rem 0;
  height: 10rem;
  width: max-content;
}

.elem-parent {
  height: 13vh;
  overflow: hidden;
  position: relative;
}

.main-hero-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17vh;
  line-height: 0.9;
}

.elem-child:nth-child(1) {
  top: 0;
}


.elem-child {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  text-transform: uppercase;
}




.behind img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 999;
}


@media only screen and (max-width: 800px) {
  .hero-section-2 {
    display: none;
  }

  .main-hero-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 9vh;
    line-height: 2;
  }

  .hero-section-1 {
    width: 100%;
    margin-left: 1rem;
  }

  .front {
    position: absolute;
    inset: 0;
    height: 100vh;
    width: 100%;
    margin: 0% auto 0% auto;
    z-index: -1;
  }


  nav img {
    height: 2.5rem;
    width: max-content;
  }

  nav {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    margin: 0 1rem;
  }

  nav div {
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    /* gap: 0 1.5rem; */
    font-size: 0.8rem;
  }

}