:root {
  --duration: 0s;
}

.row {
  width: 100%;
  height: 100px;
}

.col {
  height: inherit;
  border: 2px solid black;
  padding: 0;
}

#btns .col{
  border: none;
}

.col-choice {
  font-size: 10px;
  margin-left: auto;
  margin-right: auto;
  width: inherit;
  margin-top: 50%;
}

@keyframes dropBlue {
  0% {background-color: white;}
  20% {background-color: white;}
  25% {background-color: blue;}
  30% {background-color: white;}
  100% {background-color: white;}
}
@keyframes dropRed {
  0% {background-color: white;}
  20% {background-color: white;}
  25% {background-color: red;}
  30% {background-color: white;}
  100% {background-color: white;}
}

.f1 {
  background-color: white;
  animation-name: dropBlue;
  animation-duration: 5s;
}


.f2 {
  background-color: white;
  animation-name: dropRed;
  animation-duration: 5s;

}

@keyframes stayBlue {
  0% {background-color: white;}
  20% {background-color: white;}
  30% {background-color: blue;}
  100% {background-color: blue;}
}
@keyframes stayRed {
  0% {background-color: white;}
  20% {background-color: white;}
  30% {background-color: red;}
  100% {background-color: red;}
}

.p1 {
  background-color: blue;
  animation-name: stayBlue;
  animation-duration: 4s;
}

.p2 {
  background-color: red;
  animation-name: stayRed;
  animation-duration: 4s;
}

.b1 {
  background-color: blue;
}

.b2 {
  background-color: red;
}

#rematch {
  display: none;
}

#scores p{
  display: inline-block;
  text-align: center;
  margin: 0 20px;
}

#scores {
  display: none;
  color: grey;
}
#playArea {
  display: flex;
  align-items: center;
}

#board {
  display: block;
  margin: 0 10%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;

}

/* #p2 {
  float: right;
} */

.active {
  font-size: 25px;
  font-weight: bold;
  text-decoration: overline underline;
}

#quit {
  padding: 20px 0;
}

#rage {
  display: block;
  padding: 20px 0;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  background-color: red;
}
