html, body {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000000c0;
  }

  .landing {
  width: 100vw;
  height: 100vh;
  position: relative;
  background-image: url("/assets/landing-desktop.png");
  background-size: cover;
  background-position: center;
}

  .download-btn {
  position: absolute;
  top: 24px;
  right: 28px;
  height: 54px;
  padding: 0 26px;
  border-radius: 8px;
  border: 1px solid #00b7ff;
  background: rgba(0, 0, 0, 0.35);
  color: white;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 0 22px rgba(0, 183, 255, 0.24);
  z-index: 10;
}

.download-btn:hover {
  background: rgba(0, 183, 255, 0.14);
  transform: scale(1.05);
}

/* LOGIN BUTTON */

.login-btn {
  position: absolute;
  left: 18.5%;
  top: 62%;
  width: 360px;
  height: auto;
  display: block;
  z-index: 10;
}

.login-btn img {

  width: 100%;
  display: block;
  transition: all 0.25s ease;
}

.login-btn:hover img {
  transform: scale(1.01);
  filter:
    brightness(1.08)
    drop-shadow(0 0 2px #0077ff)
    drop-shadow(0 0 7px rgba(0, 17, 255, 0.447));
}


/* CREATE ACCOUNT BUTTON */

.register-btn {
  position: absolute;
  left: 52.5%;
  top: 62%;
  width: 360px;
  height: auto;
  display: block;
  z-index: 10;
}

.register-btn img {
  width: 100%;
  display: block;
  transition: all 0.25s ease;
}

.register-btn:hover img {
  transform: scale(1.01);
  filter:
    brightness(1.08)
    drop-shadow(0 0 2px #00bfff)
    drop-shadow(0 0 7px rgba(0, 30, 255, 0.413));
}

 @media (max-width: 700px) {
  .landing {
    background-image: url("/assets/landing-mobile.png");
    background-size: cover;
    background-position: center top;
  }

  .login-btn {
    left: 50%;
    top: 67%;
    width: 72vw;
    transform: translateX(-50%);
  }

  .register-btn {
    left: 50%;
    top: 78%;
    width: 72vw;
    transform: translateX(-50%);
  }

  .download-btn {
    top: 16px;
    right: 16px;
    font-size: 12px;
    padding: 9px 14px;
  }
}