html {
  scroll-behavior: smooth;
}
main {
  background-color: #0c0c0c;
  display: flex;
  flex-direction: column;
  gap: 200px;
}
.hero {
  background-image: url(../Images/img/black-texture2.jpg);
  height: 500px;
  width: 100%;
  background-position: center;
  background-size: 100%;
  position: relative;
  color: var(--jobless-white);
}
.hero * {
  position: relative;
  z-index: 10;
}
.hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 12, 12, 0.24693627450980393) 0%,
    rgba(12, 12, 12, 1) 100%
  );
  z-index: 1;
}
.hero .inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-info h1 {
  font-size: 56px;
  margin: 0;
}
.hero-info h1 span {
  color: var(--jobless-green);
}

.jobless-beta-container {
  display: none;
}
.hero-button {
  background-color: var(--jobless-green);
  padding: 20px 40px;
  border-radius: 50px;
  border: none;
  font-weight: 800;
  font-size: 24px;
  cursor: pointer;
  transition: 400ms;
}
.hero-button:hover {
  color: #fff;
  box-shadow: 0px -2px 80px rgba(146, 227, 169, 0.63),
    0px -0.446726px 17.869px rgba(146, 227, 169, 0.375548),
    0px -0.133002px 5.32008px rgba(146, 227, 169, 0.254452);
}
.hero-text {
  font-size: 20px;
}
.make-your-profile .inner,
.earn-beta .inner,
.find-bugs-beta .inner {
  display: flex;
  position: relative;
  z-index: 2;
  flex-direction: column;
  justify-content: space-between;
  color: var(--jobless-white);
  align-items: center;
  gap: 100px;
}
.profile-example,
.chart-example {
  width: 100%;
  display: flex;
  justify-content: center;
}
.jobless-beta-mobile-version,
.jobless-beta-desktop-version {
  width: 50%;
  max-width: 500px;
  transform-origin: center;
  transform: rotateY(317deg) rotateX(352deg);
  box-shadow: -10px 4px 72px -9px rgba(146, 227, 169, 1);
  -webkit-box-shadow: -10px 4px 72px -9px rgba(146, 227, 169, 1);
  -moz-box-shadow: -10px 4px 72px -9px rgba(146, 227, 169, 1);
}
.chart-beta {
  width: 70%;
  max-width: 500px;
}
.jobless-beta-mobile-version {
  display: block;
}
.jobless-beta-desktop-version {
  display: none;
}
.make-profile-info,
.earn-money-info,
.find-bugs-info {
  width: 100%;
}
.make-profile-info h2,
.earn-money-info h2,
.find-bugs-info h2 {
  font-size: 48px;
  font-family: var(--heading-font);
}
.make-profile-info h2 div,
.earn-money-info h2 div,
.find-bugs-info h2 div {
  color: var(--jobless-green);
}
.bugs-button-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bugs-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 20px;
  width: 100%;
  font-size: 30px;
  padding: 20px;
  background-color: var(--jobless-green);
  box-shadow: 0px -2px 80px rgba(146, 227, 169, 0.63),
    0px -0.446726px 17.869px rgba(146, 227, 169, 0.375548),
    0px -0.133002px 5.32008px rgba(146, 227, 169, 0.254452);
}
.beta-tester {
  background-image: none;
  padding: 0;
  justify-content: flex-start;
}
.email-submit {
  width: 100%;
}
.email-betatester {
  border: 2px solid var(--jobless-green);
  padding: 20px;
  width: 100%;
}
.submit-betatester {
  padding: 10px 20px;
  border-radius: 10px;
  background-color: var(--jobless-green);
  color: #0c0c0c;
  font-weight: 800;
}
.betatester-hero-text span {
  color: var(--jobless-green);
}
@media screen and (min-width: 769px) {
  .hero .inner {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .jobless-beta-container {
    display: flex;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .jobless-beta-logo {
    display: flex;
    color: var(--jobless-green);
  }
  .jobless-beta-logo .hero-logo {
    font-family: var(--secondary-font);
    font-size: 70px;
  }
  .jobless-beta-logo .hero-logo span {
    font-style: italic;
  }

  .jobless-beta-logo .beta {
    font-weight: 200;
    font-size: 30px;
  }
  .make-your-profile .inner,
  .find-bugs-beta .inner {
    flex-direction: row-reverse;
  }
  .earn-beta .inner {
    flex-direction: row;
  }
  .jobless-beta-mobile-version {
    display: none;
  }
  .jobless-beta-desktop-version {
    display: block;
    width: 100%;
  }
  .bugs-button {
    width: fit-content;
  }
}
