body, header {
    text-align: center;
    font-family: "Comic Sans MS", cursive, sans-serif;
    color: darkgreen;
}
.score-container{
  margin: auto;
  width:  300px;
  display: grid;
  grid-template-columns: auto auto;
  background-color: green;
  padding: 5px;

}

.title{
  background-color: #F0E68C;
}
.score{
  background-color: white;
}
.grid-item {
  border: 1px solid rgba(0, 0, 0, 0.8);
  padding: 10px;
  font-size: 1em;
  text-align: center;
}

.hide {
  display: none;
}

.popup {
  position: fixed;  /* Stay in place */
  z-index: 1;  /* Sit on top */
  padding-top: 5em;  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}
.popup__content {
  background-color: #fefefe;
  margin-left: auto;
  margin-right: auto;
  padding: .5em;
  border: 1px solid #888;
  width: 450px;
}
/* The Close Button */
.close {
  color: red;
  float: right;
  font-size: 2em;
  font-weight: bold;
  cursor: pointer;
}

.button {
  background-color: lightgreen;
  padding: .25em;
  border-radius: .25em;
  color: #3c5275;
  font-family: "Comic Sans MS", cursive, sans-serif;
  font-size: 1em;
  cursor: pointer;
}
.reset__button {
  width: 1em;
  height: 1em;
  cursor: pointer;
}
