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

body {
  background-image: url("/images/letsdoohit-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #16162f;
}

.logo {
  margin-bottom: 132px;
  height: 25px;
  max-width: 177px;
  margin-top: 20px;
}

h1 {
  font-size: 100px;
  margin-bottom: 132px;
  text-align: center;
  font-family: "Onest", sans-serif;
  font-weight: 900;
  color: #ff5b09;
}

.cta-button {
  padding: 1rem 2rem;
  font-family: "Instrument Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  background-color: #ff5b09;
  color: #fff;
  border: none;
  border-radius: 37px;
  cursor: pointer;
  text-decoration: none;
}

@media (max-width: 768px) {
  body {
    justify-content: flex-start;
  }

  .logo {
    margin-top: 40px;
    margin-bottom: 80px;
  }

  h1 {
    max-height: 322px;
    max-width: 335px;
    margin: 20px;
    margin-bottom: 80px;
    font-size: 85px;
    word-spacing: 100vw;
  }
}

@media (max-height: 600px) and (orientation: landscape) {
  body {
    justify-content: flex-start;
  }

  .logo {
    margin-top: 20px;
    margin-bottom: 30px;
  }

  h1 {
    font-size: 85px;
    height: auto;
    margin-bottom: 30px;
    max-width: none;
    word-spacing: normal;
  }

  .cta-button {
    margin-bottom: 20px;
  }
}
