body {
  background-color: var(--lb-yellow);
  display: flex;
  justify-content: center;
  height: 100vh;
  align-items: center;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
}

.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;

  img {
    width: 400px;
  }

  h1 {
    font-weight: 400;
    font-size: 1.8rem;
    text-align: center;
    margin-top: 1rem;
  }

  h2 {
    max-width: 400px;
    margin-top: 10rem;
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center;
    position: relative;

    em {
      font-weight: bold;
      font-size: 1.5rem;
      font-family: monospace;
    }

    &:after,
    &:before {
      width: 20px;
      position: absolute;
      display: block;
      content: "";
      height: 1px;
      background-color: black;
      opacity: 0.5;
      border-radius: 5px;
      top: 50%;
    }

    &:after {
      right: -40px;
    }

    &:before {
      left: -40px;
    }
  }

  h3 {
    text-align: center;
    margin-top: 2rem;
    font-weight: 400;
    font-size: 1rem;

    em {
      font-family: monospace;
      font-weight: bold;
    }
  }
}

@media screen and (min-width: 320px) {
  .main-content {
    img {
      width: 300px;
    }

    h1 {
      font-weight: 400;
    }

    h2 {
      max-width: 400px;

      em {
        font-weight: bold;
        font-size: 1.5rem;
        font-family: monospace;
      }

      &:after,
      &:before {
        display: none;
      }
    }
  }

  @media screen and (min-width: 480px) {
    .main-content {
      img {
        width: 400px;
      }

      h1 {
        font-weight: 400;
      }

      h2 {
        max-width: 400px;

        em {
          font-weight: bold;
          font-size: 1.5rem;
          font-family: monospace;
        }

        &:after,
        &:before {
          display: block;
        }
      }
    }
  }
}
