.main {
  &__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;
      margin-bottom: 15px;

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

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

  &__content {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;

    &--title {
      color: $c-white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      font-family: 'Inter', sans-serif;
      font-size: 30px;
      font-style: normal;
      font-weight: 900;
      line-height: normal;
      text-transform: uppercase;

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

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

    span {
      &:nth-child(1) {
        margin-right: 10px;
        color: $c-white;
        text-align: center;
        font-family: 'Inter', sans-serif;
        font-size: 40px;
        font-style: italic;
        font-weight: 900;
        line-height: normal;
        text-transform: uppercase;
        @media (max-width: $h-media-y) {
          font-size: 20px;
        }
      }
      &:nth-child(2) {
        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: 17px;
        }
      }
    }
  }

  &__vs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;

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

  &__team {
    &Box {
      width: 100px;
      height: 100px;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 10px;
    }
  }

  &__decorate {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    span {
      text-shadow: 0 0 3px $c-black;
      color: $c-white;
      font-family: "Inter", sans-serif;
      line-height: normal;
      text-transform: uppercase;
      text-align: center;
      font-style: italic;
      font-weight: 900;

      &:nth-child(1) {
        font-size: 40px;
        @media (max-width: $h-media-y) {
          font-size: 35px;
        }
      }

      &:nth-child(2) {
        font-size: 20px;
        @media (max-width: $h-media-y) {
          font-size: 16px;
        }
      }
    }
  }

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

  &__btn {
    width: 100%;
    text-decoration: none;
    padding: 20px;
    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: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 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;
    text-shadow: 0 0 3px $c-black;
  }

  &__back {
    font-size: 16px;
    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;
    text-shadow: 0 0 3px $c-black;

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