* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  background-color: rgb(250, 248, 239);
  color: rgb(165, 161, 147);
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h1 {
  font-family: "Roboto", sans-serif;
  font-size: 3rem;
  color: rgb(165, 161, 147);
  text-shadow: 1px 1px 0 #bcbcbc, 2px 2px 0 #000;
  margin: 20px;
}

.box {
  background-color: rgb(165, 161, 147);
  color: rgb(100, 99, 94);
  padding: 5px;
  margin: 0 10px;
}

.options-label {
  text-shadow: 1px 1px 0 #000;
  letter-spacing: 1px;
  display: block;
  text-align: center;
  margin: 5px;
}

.btn {
  font-family: "Roboto", sans-serif;
  box-shadow: -2px 2px 0px -20px #899599;
  background: linear-gradient( to bottom, rgb(250, 248, 239) 5%, rgb(165, 161, 147) 100%);
  background-color: rgb(250, 248, 239);
  border: 1px solid rgb(165, 161, 147);
  color: rgb(100, 99, 94);
  cursor: pointer;
  font-size: 0.8rem;
  padding: 3px 10px;
  text-shadow: 0px 1px 0px #e1e2ed;
  margin: 0 10px;
}

.btn:hover, .restart-btn:hover, td:hover {
  background: linear-gradient( to bottom, rgb(165, 161, 147) 5%, rgb(250, 248, 239) 100%);
  background-color: rgb(165, 161, 147);
}

.btn:active, .restart-btn:active {
  position: relative;
  top: 2px;
}

.information {
  margin: 10px;
  margin-left: 20px;
  width: 90%;
  height: 10%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.restart-btn {
  background-color: rgb(250, 248, 239);
  padding: 5px;
  font-size: 1.2rem;
}

.timer, .mines {
  width: 50px;
  height: 30px;
  text-align: center;
}

.hints, .lives {
  width: 75px;
  height: 30px;
  cursor: pointer;
}

.hints:hover {
  letter-spacing: 5px;
  font-size: 1.1rem;
}

td {
  width: 40px;
  height: 40px;
  border: 2px solid rgb(165, 161, 147);
  padding: 5px;
  cursor: pointer;
  color: #000;
  text-align: center;
}

.empty {
  background-color: rgb(141, 141, 141);
}

.best-time {
  margin: 10px;
}
