html {
  font-family:Satoshi-Medium, sans-serif;
  line-height:1.5
}

h1 {
  font-size: 6rem;
  font-weight: 900;
}

a {
  text-decoration: none;
  cursor: pointer;
}

a:visited, a:hover, a:active {
  color: #0000EE;
}

header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;

  padding-top: 1rem;
  padding-bottom: 1rem;

  background-color: hsla(0, 0%, 100%, .8);

  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(243, 244, 246);
}

.fixed-header-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;

  padding-left: 1rem;
  padding-right: 1rem;
}

.fixed-header-content .left a {
  display: flex;
  flex-direction: row;
  align-items: center;

  font-size: 2rem;
}

.fixed-header-content .right {
  display: flex;
  gap: 1rem;
}

.button {
  font-weight: 700;
  font-size: .875rem;
  line-height: 1.25rem;
  text-align: center;

  padding-top: .5rem;
  padding-bottom: .5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;

  border-radius: 9999px;
  color:black;
}

.large-button {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.75rem;
  text-align: center;

  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;

  border-radius: 9999px;
  color: black;
}

.primary-bg-color {
  background-color: #fede00;
}

.secondary-bg-color {
  background-color: rgb(229, 231, 235);
}

.secondary-color {
  color: rgb(163, 163, 163);
}

.fixed-header-content span {
  padding-left: .75rem;
  color: black;
}

main {
  max-width: calc(65ch + 30rem);

  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

main h1 {
  margin-top: 6rem;
}

main .how-it-works {
  max-width: calc(65ch + 10rem);
}

.how-it-works .title {
  font-size: 4rem;
}

.how-it-works ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  list-style: none;

  padding-left: 0;

  font-size: 1.5rem;
}

.how-it-works li {
  border-bottom: 1px solid rgb(163, 163, 163);
  padding-bottom: 2rem;
}

.how-it-works li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

footer {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 1rem;
  margin-top: 2rem;
  align-items: center;
}

footer p {
  margin: unset;
}

footer .links {
  display: flex;
  gap: 0.5rem
}

@media only screen and (max-width: 600px) {
  main h1 {
    margin-top: 8rem;
  }

  h1 {
    font-size: 3rem;
  }

  .how-it-works .title {
    font-size: 3rem;
  }

  .fixed-header-content {
    flex-direction: column;
  }
}