body {
  background-color: #161616;
  color: white;
  font-family: monospace;
}

a {
  color: turquoise;
  font-size: 20px;
  text-decoration: none;

  &:hover {
    text-decoration: underline;
  }
}

nav {
  position: fixed;

  .go-home {
    background-color: white;
    color: #161616;
    display: flex;
    padding: 8px 16px;
    text-decoration: none;

    &:hover {
      background-color: #161616;
      color: turquoise;
    }
  }
}

h1 {
  font-size: 32px;
  margin-bottom: 26px;
}

p {
  font-size: 20px;
  line-height: 1.25;
}

.body-wrapper {
  padding: 100px 40px;
  margin: auto;
  max-width: 1000px;

  @media (max-width: 600px) {
    padding: 80px 20px;
  }
}

ol {
  li {
    display: flex;
    font-size: 20px;
    justify-content: space-between;
    margin-bottom: 30px;

    @media (max-width: 600px) {
      flex-direction: column;
      gap: 10px;
    }
  }
}