html,
body {
  font-family: SF Pro, sans-serif;
  background-color: #c79f0f ;
  position: relative;
  margin: 0;
}

.background {
  position: relative;
  z-index: 1;
  max-width: 810px;
  width: 100%;
}

.main-background {
  position: absolute; 
  top: -1px;
}

.main-desktop {
  position: absolute;
  width: 100%;
}

img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.header-container {
  text-align: end;
  width: 100%;
  z-index: 6;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  max-width: 1800px;
}

button {
  width: 150px;
  height: 55px;
  border-radius: 40px;
  font-size: 20px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  margin-right: 20px;
}

.sign-in-btn {
  background: white;
  color: #e24b38;
}

.sign-up-btn {
  background: #590000;
  color: white;
  border: none;
  cursor: pointer;
}

a {
  text-decoration: none;
}

.cursor-pointer {
  cursor: pointer;
}

.webMain-container {
  position: absolute;
  width: 100%;
  margin: auto;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
  top: 50%;
}

.download-btn {
  width: 60%;
  margin-bottom: 5%;
}

.jackpot {
  width: 30%;
  position: relative;
  margin: auto;
  margin-top: 20%;
}

.jackpot-number {
  width: 75%;
  margin-top: -40%;
}

.download {
  width: 40%;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: 130%;
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

.group-logo {
  margin: 10% auto;
}

@media only screen and (max-width: 1024px) {
  button {
    width: 100px;
    height: 34px;
    font-size: 14px;
    margin-top: 10px;
    margin-right: 10px;
  }

  .download {
    width: 80%;
    top: 115%;
  }

  .jackpot {
    width: 65%;
    margin-top: 80%;
  }

  .group-logo {
    margin-bottom: 5%;
  }

  .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none;
  }

  .main-mobile {
    position: absolute;
    width: 100%;
  }

  .download-btn {
    width: 65%;
    margin-bottom: 8%;
  }

  .background {
    max-width: none;
  }

  .header-container {
    max-width: none;
  }
}

@media only screen and (min-width: 900px) and (max-width: 1024px) {
  .jackpot-number {
    width: 75%;
    margin-top: -40%;
  }

  .download {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .download-btn {
    width: 80%;
  }

  button {
    width: 85px;
    height: 30px;
    font-size: 12px;
  }
}

@media only screen and (max-height: 667px) {
  .jackpot {
    margin-top: 68%;
  }
}