.sitelogo {
    width: 80px;
    padding: 0px 10px;
}
.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.status-badge {
  font-size: 0.9rem;
  padding: 0.35em 0.7em;
}
  /*leageu winner*/
.winner-card {
  font-weight: bold;
  color:maroon;
  animation: champion-box 2s ease 0s 99 normal forwards;
  
}
.goat-card {
  animation: champion-box 2s ease 0s 99 normal forwards;
}
@keyframes champion-box {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

  /*leageu winner end*/
  
/*for navbar*/
 .nav-item::after {
 content: '';
 display: block;
 width: 0px;
 height: 2px;
 background: #fec400;
 transition: 0.4s
}

.nav-item:hover::after {
   width: 100%
}
/*for navbar end*/

/*for timer*/
.time-box h3 {
  font-size: 1.2rem;
  margin: 0;
}

.time-box small {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (min-width: 576px) {
  .time-box h3 {
    font-size: 1.4rem;
  }

  .time-box small {
    font-size: 0.75rem;
  }
}

@media (min-width: 768px) {
  .time-box h3 {
    font-size: 1.6rem;
  }

  .time-box small {
    font-size: 0.8rem;
  }
}
/*for timer end*/

/*Avatar css start */

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/*Avatar css end */


/*win loss badge box*/

  .mr-box{
    width: 20px;
    height: 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 5px;
  }

/*win loss badge box end*/