* {
  box-sizing: border-box;
}

body {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to left, #a8c0ff, #3f2b96);
  background-position: center;
  background-size: cover;
  font-family: 'Gloria Hallelujah', cursive;
  background-repeat: no-repeat;
}

.general-information {
  width: 700px;
  display: flex;
  justify-content: space-around;
  margin: 0 0 25px 110px;
  font-size: 25px;
  font-weight: bold;
  margin-right: 50px;
}

.timer,
.show-current-score {
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  background: rgb(218, 216, 216, 0.9);
  border: 2px black solid;
  border-radius: 15px;
}

.title {
  margin: 20px 0 10px 80px;
  padding: 3px;
  font-size: 25px;
  font-weight: bold;
  text-shadow: 3px 2px 1px #a4a4a4;
  background: rgb(160, 159, 159, 0.8);
  border-radius: 5px;
  border: 2px black solid;
}

.button {
  padding: 5px;
  font-weight: bold;
  margin: 8px 30px 8px 8px;
  border: 3px black solid;
  border-radius: 10px;
  outline: none;
}

.easy {
  background: green;
}
.medium {
  background: yellow;
}
.hard {
  background: red;
}

.button:hover {
  transform: scale(1.3);
}

.main-container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
}

table {
  padding: 10px;
  background: white;
  border: 5px black solid;
  border-radius: 10px;
}

td {
  height: 30px;
  width: 30px;
  border: 2px black solid;
  background: gray;
  color: white;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
  border-radius: 10px;
}

td:hover {
  background: white;
}

.hints {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin-left: 30px;
  color: rgb(153, 255, 0);
  font-size: 75px;
  font-weight: bold;
  text-shadow: 2px 2px 4px black;
}

.lifes {
  width: 340px;
  display: flex;
  justify-content: space-between;
  margin-left: 110px;
  color: red;
  font-size: 40px;
  font-weight: bold;
  text-shadow: 2px 2px 4px black;
}

.life:hover {
  transform: scale(1.3);
}

.smiley {
  font-size: 50px;
}

.score-board {
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  margin-right: 30px;
  padding: 10px;
  background: rgb(218, 216, 216, 0.9);
  border: 2px black solid;
  border-radius: 10px;
  font-size: 20px;
  font-weight: bold;
}

.score {
  text-align: center;
  margin-top: 10px;
}

.levels {
  margin-left: 110px;
}
