body {
  background-color: black;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 1000px;
}

.game-controls {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.game-title {
  text-align: center;
  font-family: "digital-clock-font";
  font-size: 50px;
}

.game-control-container {
  display: flex;
  flex-direction: column;
  margin: 10px;
}

.comments {
  display: flex;
  flex-direction: column;
  align-self: center;
  font-family: monospace;
  color: green;
  margin-top: 180px;
}

a:visited {
  color: green;
  text-decoration: none;
}

a:hover {
  color: green;
  text-decoration: underline;
}

a:link {
  color: green;
  text-decoration: none;
}

a:after {
  color: green;
  text-decoration: none;
}

.flag-button {
  background-color: green;
  color: black;
  box-sizing: none;
  outline: none;
  box-shadow: none;
  border-image: none;
  padding: 0;
  margin: 0;
  width: 46px;
  height: 46px;
  border: none;
}

.comment-heading {
  margin: 0px;
}

.credit-heading {
  margin: 0;
  text-decoration: underline;
}

.game-header {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

@font-face {
  font-family: "digital-clock-font";
  src: url("/assets/monodigital.ttf");
}
.timer {
  font-size: 30px;
  color: red;
  font-family: "digital-clock-font";
  margin-right: 20px;
  margin-left: 5px;
}

.mine-counter-label {
  font-family: "digital-clock-font";
  font-size: 20px;
}

.timer-label {
  font-family: "digital-clock-font";
  font-size: 20px;
}

.mine-counter {
  font-size: 30px;
  color: red;
  font-family: "digital-clock-font";
  margin-left: 5px;
}

.flag-button-image {
  width: 45px;
  height: 45x;
}

.start-button {
  background-color: black;
  font-family: "digital-clock-font";
  letter-spacing: 2px;
  font-weight: bold;
  font-size: 20px;
  color: red;
  height: 45px;
  box-sizing: none;
  outline: none;
  box-shadow: none;
  border-image: none;
}

.gameboard {
  border: 1px solid white;
  width: 310px;
  height: 310px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-self: center;
}

.difficulty-select-label {
  font-family: "digital-clock-font";
  color: red;
}

.difficulty-option {
  font-family: "digital-clock-font";
  font-size: 18px;
  letter-spacing: 1px;
  height: 30px;
  font-weight: bold;
}

.difficulty-option:hover {
  background-color: darkgrey;
}

.difficulty-select {
  font-family: "digital-clock-font";
  font-size: 18px;
  letter-spacing: 1px;
  height: 30px;
  font-weight: bold;
  background-color: grey;
}

.cell {
  background-size: contain;
  text-align: center;
  font-family: monospace;
  font-size: 23px;
  width: 29px;
  height: 29px;
  border: 1px solid black;
  background-color: grey;
}

@media only screen and (max-width: 1000px) {
  .footer {
    flex-direction: row-reverse;
  }
}

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