* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scrollbar-gutter: stable;
}

body {
  background: #0A0A07;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: always;
  text-rendering: optimizeLegibility;
}

@font-face {
  font-family: "TrajanPro3Regular";
  font-style: normal;
  font-format: opentype;
  font-weight: 400;
  src: url("assets/fonts/trajanpro3-regular.otf");
}

@font-face {
  font-family: "NBInternationalPro-Regular";
  font-style: normal;
  font-format: woff2;
  font-weight: 400;
  src: url("assets/fonts/nbinternationalpro-regular.woff2");
}

.div-container {
  flex: 0 0 auto;
  width: 100%;
  height: 100vh;
  display: flex;
  align-self: center;
  align-items: center;
  justify-content: center;
}

.div-content {
  display: grid;
  max-width: 1100px;
  max-height: 100vh;
  align-items: center;
  justify-items: center;
  grid-template-rows: repeat(1, 1fr);
  grid-template-columns: auto auto;
}

.img-soon {
  max-width: 100%;
  max-height: 95vh;
  height: auto;
  object-fit: contain;
}

.div-copy {
  display: flex;
  max-width: 450px;
  align-items: flex-start;
  flex-direction: column;
  padding-right: 20px;
}

.txt-header {
  color: #c69941;
  font-size: 2.75rem;
  background: -webkit-linear-gradient(#987531, #FFD586);
  font-family: TrajanPro3Regular;
  font-weight: normal;
  padding-bottom: 25px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.txt-header .txt-line {
  display: block;
}

.txt-header .txt-line-2 {
  padding-left: 10rem;
}

.txt-paragraph {
  color: #c69941;
  font-size: 1.15rem;
  background: -webkit-linear-gradient(#FFD586, #987531);
  font-family: "NBInternationalPro-Regular";
  line-height: 165%;
  margin-left: 35px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.txt-legal {
  color: #c69941;
  font-size: 0.85rem;
  margin-top: 50px;
  font-family: "NBInternationalPro-Regular";
  margin-left: 35px;
  line-height: 165%;
}

@media (max-width: 995px) {
  .div-copy {
    transform: translateX(-25px);
  }

  .txt-header {
    font-size: 2.35rem;
  }

  .txt-paragraph {
    font-size: 1.1rem;
  }

  .txt-legal {
    font-size: 0.75rem;
  }

  .img-soon {
    transform: translateX(25px);
  }
}


@media (max-width: 900px) {
  .img-soon {
    width: 450px;
    max-width: none;
    flex-shrink: 0;
  }
}

@media (max-width: 800px) {
  .div-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    transform: translateY(-50px);
  }

  .div-copy {
    transform: translateX(0px);
    text-align: center;
    align-items: center;
    max-width: 100%;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 30px;
  }

  .img-soon {
    width: 100%;
    max-width: none;
    flex-shrink: 0;
    transform: translateX(0px);
  }

  .txt-header {
    font-size: 2.5rem;
    white-space: nowrap;
  }

  .txt-header .txt-line {
    display: inline;
  }

  .txt-header .txt-line-2 {
    padding-left: 0rem;
  }

  .txt-paragraph {
    font-size: 1.5rem;
    margin-left: 0px;
  }

  .txt-legal {
    font-size: 1rem;
    margin-left: 0px;
  }
}

@media (max-width: 480px) {
  .div-copy {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
  }
  .txt-header {
    font-size: 2rem;
  }

  .txt-paragraph {
    font-size: 1rem;
  }

  .txt-legal {
    font-size: 0.85rem;
  }
}
