body {
  font-family: "Montserrat", sans-serif;
  background: lightgrey;
}

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

.buttonStyle {
  padding: 20px 40px;
  font-size: 2em;
  border-radius: 10px;
  border: 3px solid darkgrey;
  margin: 30px;
  box-shadow: 4px 4px 5px grey;
  font-weight: 600;
  width: 300px;
  text-align: center;
  cursor: pointer;
}

.isHidden {
  display: none;
}

.button-animation {
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
  box-shadow: 4px 4px 5px grey;
}

.button-animation:hover {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 1px grey;
  filter: brightness(85%);
}

.newGame {
  display: flex;
  justify-content: center;
  margin: 30px auto;
  font-size: bold;
  color: white;
  background: #00af00;
}

.output-styles {
  text-align: center;
  font-size: 20px;
}

#result {
  font-size: 8em;
  font-weight: 900;
}

#round {
  font-size: 2.5em;
  padding-bottom: 30px;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.show {
  display: block;
}

.modal {
  border: 8px solid #00af00;
  border-radius: 15px;
  display: block;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modal h1 {
  color: #00af00;
  text-align: center;
  font-size: 35px;
  font-weight: bold;
  margin-top: 5px;
  padding-bottom: 15px;
}

table {
  text-align: center;
  border-collapse: collapse;
}

table thead {
  background: #00af00;
  color: white;
}

table thead th {
  padding: 10px 30px;
  font-size: 20px;
}

table tbody {
  width: 400px;
  background: rgba(0, 175, 0, 0.15);
  max-height: 400px;
  overflow-y: auto;
}

table tbody td {
  padding: 10px 30px;
  width: 400px;
}

tbody tr:hover {
  background: rgba(0, 175, 0, 0.35);
  cursor: pointer;
}

.close {
  background: #00af00;
  z-index: 1;
  position: absolute;
  right: 12px;
  top: 12px;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  font-size: 20px;
  font-weight: bold;
}

header {
  color: black;
  font-size: 25px;
  min-height: 30px;
  font-weight: bold;
  padding: 15px;
  text-align: center;
  opacity: 0.10;
}

/*# sourceMappingURL=style.css.map */