html {
  min-height: 110vh;
  background-color: #111;
}
body {
  color: rgb(224, 224, 224);
  background-color: #111;
}

/* Navbar */
.navbar {
  flex-wrap: nowrap;
}
.lcs-holder {
  border-right: 2px solid black;
  margin-right: 20px;
  padding-right: 10px;
}
.team-logos,
.team-group-holder {
  display: flex;
  flex-grow: 100;
  justify-content: space-around;
}
.team-logos {
  flex-wrap: wrap;
}
.team-logos img,
.lcs-holder img,
.filters img {
  cursor: pointer;
}

.active {
  background-color: rgba(100, 100, 100, 0.7);
}

@media only screen and (max-width: 498px) {
  .team-holder img {
    width: 52px;
  }
}
@media only screen and (max-width: 350px) {
  .team-holder img {
    width: 44px;
  }
  .lcs-holder {
    margin-right: 0;
    padding-right: 0;
  }
}

/* filter */
.filter-label {
  text-align: center;
  font-size: 1.4rem;
  width: 200px;
  height: 30px;
  background: #212529;
  transform: perspective(10px) rotateX(1deg);
  margin: auto;
  border: double whitesmoke;
  border-bottom: none;
}

.filter-area {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 10;
}

.filters {
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 820px) {
  .filters img {
    width: 50px;
  }
}

@media only screen and (max-width: 610px) {
  .filters img {
    width: 40px;
  }
}

@media only screen and (max-width: 498px) {
  .filter-area {
    display: none;
  }
}

/* Title */
h1 {
  margin: 2%;
  text-align: center;
  font-size: calc(2.375rem + 1.5vw);
}

/* schedule */
#schedule-container {
  margin-bottom: 180px;
}

.game-card {
  border-radius: 20px;
  border: darkslateblue 2px solid;
  position: relative;
}

.time-div {
  position: absolute;
  top: 5px;
  left: 15px;
  font-weight: bold;
}

.vs-div {
  display: flex;
  justify-content: center;
  margin: 20px;
}

.vs-team-div img {
  width: 120px;
}

.vs-logo-div {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.vs-logo-div img {
  width: 45px;
  margin: 0 25px;
}

@media only screen and (max-width: 498px) {
  .time-div {
    top: -10px;
    left: 0px;
  }
  .vs-div {
    margin: 5px;
  }

  .vs-team-div img {
    width: 70px;
  }

  .vs-logo-div img {
    width: 25px;
  }
}
