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

  &__container {
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
    max-width: 420px;

    &::before {
      content: '';
      background: url("../image/shazam.png");
      background-repeat: no-repeat;
      background-size: contain;
      width: 20px;
      height: 20px;
      position: absolute;
      top: 35%;
      left: 0;
    }

    &::after {
      content: '';
      background: url("../image/shazam2.png");
      background-repeat: no-repeat;
      background-size: contain;
      width: 40px;
      height: 30px;
      position: absolute;
      bottom: 5%;
      right: 0;
    }
  }

  &__title {
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2; /* 126.316% */
    color: $c-white;
    text-align: center;
    margin-bottom: 30px;

    @media (max-height: $h-media-x) {
      font-size: 26px;
      margin-bottom: 15px;
    }


    span {
      color: $c-primary;
      font-size: 30px;
      font-style: normal;
      font-weight: 900;
      line-height: 38px; /* 126.667% */
      text-transform: uppercase;

      @media (max-width: $h-media-y) {
        font-size: 24px;
        font-style: normal;
        font-weight: 900;
        line-height: 30px;
      }
    }
  }

  &__button {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  &__link {
    text-decoration: none;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: $c-white;
    width: 100%;
    padding: 20px 15px;
    border-radius: 44px;
    background: $c-primary;
    text-align: center;
    margin-bottom: 10px;

    @media (max-width: $h-media-y) {
      font-size: 14px;
      padding: 10px;
      margin: 0 auto 10px;
      max-width: 300px;
    }
  }

  &__pay {
    text-align: center;
    color: $c-white;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  &__decoration {
    display: block;
    object-fit: cover;
    width: 100%;
    padding: 10px 0;
  }
}

.decoration {
  &.container {
    padding: 0;
    max-width: 600px;

  }
}