.main {
  position: relative;
  z-index: 3;

  &__title {
    color: $c-white;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 35px;
    font-style: italic;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 1rem;
    margin-top: 1rem;

    @media (max-width: $h-media-y) {
      font-size: 25px;
    }

    &--block {
      display: flex;
      flex-direction: column;
      align-items: center;

      img {
        display: block;
        max-width: 200px;
        max-height: 135px;
        object-fit: contain;
        width: 100%;
        margin-bottom: 20px;

        @media (max-height: $h-media-x) {
          padding-top: 10px;
          max-height: 110px;
        }

        @media (max-height: 660px) {
          margin-bottom: 5px;
          padding-top: 5px;
          max-height: 90px;
        }
      }
    }
  }

  &__content {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;

    &--title {
      color: $c-white;
      text-align: center;
      font-family: 'Inter', sans-serif;
      font-size: 30px;
      font-weight: 900;
      line-height: normal;
      text-transform: uppercase;
      margin-bottom: 1rem;

      @media (max-width: $h-media-y) {
        font-size: 25px;
      }

      @media (max-height: $h-media-x) {
        font-size: 20px;
      }
    }
  }

  &__date {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    margin-bottom: 5px;
    text-align: center;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.2) 51.04%,
      rgba(255, 255, 255, 0) 100%
    );

    span {
      color: $c-white;
      text-align: center;
      font-family: 'Inter', sans-serif;
      font-size: 20px;
      font-weight: 900;
      line-height: normal;
      text-transform: uppercase;
      @media (max-width: $h-media-y) {
        font-size: 16px;
      }
    }
  }

  &__vs {
    display: flex;
    justify-content: space-between;

    img {
      display: block;
      object-fit: contain;

      @media (max-width: $h-media-y) {
        max-width: 80px;
      }
    }
  }

  &__vs {
    display: flex;
    justify-content: space-between;
    position: relative;
  }

  &__team {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    div {
      padding: 10px;
      border-radius: 50%;
      width: 170px;
      height: 170px;
      display: flex;
      justify-content: center;
      align-items: center;

      img {
        display: block;
        object-fit: contain;
        width: 100%;
        height: 100%;
      }

      @media (max-width: $h-media-y) {
        width: 140px;
        height: 140px;
      }

      @media (max-height: 650px) {
        width: 90px;
        height: 90px;
      }
    }

    h2 {
      color: $c-white;
      text-align: center;
      font-family: 'Inter', sans-serif;
      font-size: 20px;
      font-weight: 900;
      line-height: normal;
      text-transform: uppercase;

      @media (max-width: $h-media-x) {
        font-size: 18px;
      }

      @media (max-height: 650px) {
        font-size: 16px;
      }
    }
  }

  &__submit {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.5rem;
  }

  &__btn {
    width: 100%;
    text-decoration: none;
    padding: 25px;
    border-radius: 14px;
    background: $c-green;
    color: $c-white;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;

    @media (max-height: $h-media-x) {
      padding: 15px;
      font-size: 20px;
    }
  }

  &__price {
    color: $c-white;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    @media (max-height: $h-media-x) {
      font-size: 12px;
    }
  }

  &__back {
    font-size: 15.982px;
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
    border: $c-white 1px solid;
    color: $c-white;
    width: max-content;
    margin: 0 auto;
    padding: 5px 20px;
    border-radius: 100px;
    opacity: 0.9;

    @media (max-height: $h-media-x) {
      font-size: 12px;
    }
  }
}
