.resetGameButtonDiv, .changeLogButtonDiv, .howToPlayButtonDiv {
  text-align:center;
  align-items: center;
  display: inline-block;
  margin-right: 5px;
}

.buttons {
  align-items: center;
  text-align:center;
}

.popUpBody {
  margin-bottom: -5px;
  line-height: 1.5;
}

.modal {
  display: inline-block;
  position: fixed;
  left: 0%;
  bottom: 0%;
  right: 0%;
  display: none;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  top: 0%;
}

.popUpWindow {
  background-color: #FFFFFF;
  width: 50%;
  margin: 10% auto;
  padding: 10px 20px 20px 20px;
  justify-content: space-between;
  border-radius: 10px;
  font-family: Helvetica, Arial, sans-serif;
  position: relative;
  width: 310px;
}

.popUpHeader {
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid black;
}

.popUpTitle {
  margin-top: -5px;
  margin-left: -15px;
  font-size: 1.25rem;
  font-weight: bold;
}

#popUpButtonClose {
  margin-right: -18px;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-size: 1.25rem;
  font-weight: bold;
  transition: opacity 0.15s;
}

.close {
  top: 0;
  right: 0;
  color: rgba(0,0,0,0.3);
  height: 30px;
  width: 30px;
  font-size: 30px;
  line-height: 30px;
  text-align: center;
  position: absolute;
}

.close:hover,
.close:focus {
  cursor: pointer;
  color: #000000;
}

.open {
  display: block;
}

#popUpButtonOpen, .reset {
  background-color: #06af22;
  border: 8px;
  border-radius: 8px;
  border-style: none;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  height: 40px;
  padding: 10px 16px;
  text-align: center;
  text-decoration: none;
  transition: color 100ms;
  vertical-align: baseline;
  transition: opacity 0.15s;
  width: 116px;
}

#popUpButtonOpen:hover, #popUpButtonClose:hover, .reset:hover {
  opacity: 0.8;
}

#popUpButtonOpen:active, #popUpButtonClose:active, .reset:active{
  opacity: 0.5;
}

.resetGameLink {
  color: white;
  text-decoration: none;
}