.main {
  .home-link {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;

    font-family: var(--font-family);
    font-weight: 300;
    font-size: 14px;
    line-height: 150%;
    text-align: center;
    text-decoration: none;
    color: var(--txt-secondary);
    transition: color 0.3s ease;

    svg {
      transform: rotate(-90deg);
      stroke: #fff;
      transition: stroke 0.3s ease;
    }
  }

  .home-link:hover,
  .home-link:focus {
    color: var(--blue);

    svg {
      stroke: var(--blue);
    }
  }

  h1 {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 32px;
    line-height: 140%;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #f5f5f5;
    text-align: center;
    margin-bottom: 40px;
  }

  p {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 14px;
    line-height: 130%;
    color: var(--txt-secondary);
  }

  h2 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 28px;
    line-height: 130%;
    color: var(--txt-secondary);
    margin: 20px 0;
  }
  h3 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;
    color: var(--txt-secondary);
    margin: 20px 0;
  }

  a {
    text-decoration-skip-ink: none;
    text-decoration: underline;
  }

  ul {
    padding-left: 24px;
    list-style: disc;
  }
}

@media screen and (min-width: 1436px) {
  .main {
    h1 {
      font-size: 40px;
    }
  }
}
