.videoBox {
    background-color: black;
    width: 100%;
    height: fit-content;
    display: flex;
    min-height: 50vh;
  }
  .timer {
    position: relative;
    left: 50rem;
    top: 17rem;
    text-align: right;
    margin: 0;
    width: auto;
    height: min-content;
    color: white;
  }
  .playerInfo {
    z-index: 10;
    width: 26%;
    height: auto;
    position: relative;
    right: 3px;
    font-weight: 500;
    display: none
  }
  
  .playerName {
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
  }
  
  .playerCards {
    display: flex;
    gap: 5px;
    width: 3rem;
    height: 3rem;
  }
  
  .videoframe {
    position: relative;
    top: 0rem;
    left: 0rem;
    width: 100%;
    height: 100%;
    
  }
  
  .iframe {
    float: right;
  }
  
  @media (max-width: 768px) {
    .videoBox {
      /* height: 45%; */
      height: fit-content;
      min-height: 28vh;
      
      
    }
  
    .playerInfo {
      position: relative;
      right: 0;
    }
  
    .playerName {
      font-size: 12px;
      height: 8px;
    }
  
    .playerCards {
      width: 21px;
      height: 21px;
    }
  
    .videoframe {
      width: 100%;
      height: 100%;
    }
  }

















  