/*
#0047b3 / rgb(0, 71, 179) = blue board
#ffff66 / rgb(255, 255, 102) = yellow pieces
#ff3333 / rgb(255, 51, 51) = red pieces
#282828 / rgb(40, 40, 40) = dark background
#808080 / rgb(128, 128, 128) = lighter gray
*/

body {
  text-align: center;
  background-color: rgb(40, 40, 40);
  font-family: Helvetica;
  font-size: 200%;
  color: white;
}

.container {
	width: 294px; 
	margin: 0 auto; 
  text-align: center;
  display: grid;
  grid-template-columns: 42px 42px 42px 42px 42px 42px 42px;
  background-color: rgb(0, 71, 179);
  padding: 0;  
}

.square {
  text-align: center;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
  background-color: rgb(40, 40, 40);
  color: white;
  font-size: 50%;
  font-weight: bold;
  cursor: pointer;
  border-radius: 16px;
}

.infoBar {
	height: 30px; 
  margin: 0 auto; 
  margin-top: 10px;
  font-size: 150%;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  font-weight: bold;
}

.scoreboard {
	width: 300px; 
	margin: 0 auto; 
  display: grid;
  grid-template-columns: 150px 150px;
  margin-top: 30px;
  font-size: 60%;
}

.displayRedScore {
  margin-left: 15px;
  margin-right: 15px;
  text-align: center;
  border: solid 1px rgb(255, 51, 51);
  border-radius: 25px;
  color: rgb(40, 40, 40);
  background-color: rgb(255, 51, 51);
}

.displayYellowScore {
  margin-left: 15px;
  margin-right: 15px;
  text-align: center;
  border: solid 1px rgb(128, 128, 128);
  border-radius: 25px;
  color: rgb(128, 128, 128);
  background-color: rgb(40, 40, 40);
}

.buttonRow {
  width: 300px;
  margin: 0 auto;
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.reset {
  flex: 1;
  font-size: 65%;
  text-align: center;
  border: solid 1px rgb(128, 128, 128);
  border-radius: 10px;
  padding-top: 8px;
  padding-bottom: 8px;
  color: rgb(128, 128, 128);
  cursor: pointer;
}

