.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: 20px;
    margin-top: 20px;

    @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: 20px;

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

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

  &__date {
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.20) 51.04%, rgba(0, 0, 0, 0.00) 100%);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    margin-bottom: 10px;

    span {
      margin-right: 10px;
      color: $c-white;
      text-align: center;
      font-family: 'Inter', sans-serif;
      font-size: 20px;
      font-style: italic;
      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: 90px;
      }
    }
  }

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

  &__team {
    max-width: 46%;
    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: 100px;
        height: 100px;
      }
    }

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

      @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;
  }

  &__btn {
    width: 100%;
    text-decoration: none;
    padding: 25px;
    border-radius: 14px;
    background: $c-green;
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.50);
    color: $c-white;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;

    @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;
    margin-bottom: 20px;
  }

  &__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: .9;

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