.doc {
  width: 100vw;
  height: 100vh;
  position: relative;
  //   overflow: hidden;

  &__title {
    color: #ff0002;
    @include center-h();
    top: 5%;
    font-size: 36px;
    font-weight: bold;
    z-index: 2;
  }

  &__logo {
    @include center-h();
    top: 10%;
    width: 30vw;
  }

  &__logo2 {
    @include center-h();
    bottom: 10%;
    width: 10vw;
  }

  &__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  #connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
  }

  .bracket-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 20px;
    height: 100%;
    z-index: 2;
    position: relative;
  }

  .bracket {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 20px;
    flex: 1;
    height: 100%;
  }

  .match {
    background: #eee;
    padding: 10px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    min-width: 140px;
    position: relative;

    &.finale {
      &::before,
      &::after {
        display: none;
      }
    }

    &::after {
      content: "";
      @include center-v();
      left: 60%;
      width: 70px;
      height: 70px;
      background: #cacaca;
      z-index: 5;
    }

    &::before {
      content: "";
      @include center-v();
      right: 60%;
      width: 70px;
      height: 70px;
      z-index: 5;
      background: #cacaca;
    }
  }

  .center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .finale {
    font-weight: bold;
    background: #ffd700;
  }

  ////////
  ///
  ///
}
