.main {
  padding-top: 100px;

  .container {
    position: relative;
  }

  .back-link {
    position: absolute;
    top: -40px;
    left: 0;
    transform: rotate(-90deg);
    width: 40px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }

  .back-link:hover {
    opacity: 1;
  }

  h1 {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 48px;
    line-height: 117%;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.4) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 36px;
  }

  p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.63);
  }

  h2 {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.63);
    margin: 20px 0;
  }
  h3 {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.63);
    margin: 20px 0;
  }

  a {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.63);
    text-decoration-skip-ink: none;
    text-decoration: underline;
  }

  ul {
    color: rgba(255, 255, 255, 0.63);
    padding-left: 24px;
    list-style: disc;
  }
}

@media screen and (min-width: 1436px) {
  .main {
    padding-top: 130px;

    .back-link {
      left: 90px;
      top: 0;
    }

    h1 {
      font-size: 68px;
      margin-bottom: 52px;
    }
  }
}
