@font-face {
  font-family: "Cursed Timer ULiL";
  src: url("./assets/CursedTimerUlil-Aznm.ttf");
}

body {
  background-color: #a7f3d0;
}

.board {
  background-color: #1b244a;
  color: #eeeeee;
  height: 400px;
  max-width: 500px;
  margin: 0 auto;
  border: 4px solid white;
  border-radius: 10px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
}

.board-title {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  line-height: 32px;
  font-weight: bold;
  font-size: 40px;
}

.board-score {
  width: 150px;
  height: 120px;
  background-color: #080001;
  border-radius: 5px;
  margin: 24px 0;
}

.board-points {
  font-family: "Cursed Timer ULiL", sans-serif;
  line-height: 128px;
  font-size: 90px;
  color: #f94f6d;
}
.btns {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.btn {
  height: 45px;
  width: 45px;
  font-size: 18px;
  line-height: 32px;
  font-family: "Cursed Timer ULiL", sans-serif;
  color: #9aabd8;
  border: 2px solid #9aabd8;
  border-radius: 5px;
  background-color: transparent;
}

.reset-btn {
  display: block;
  font-family: inherit;
  font-size: 18px;
  color: white;
  font-weight: bold;
  margin: 0 auto;
  width: 120px;
  height: 50px;
  border-radius: 8px;
  background-color: #4ecdc4;
  border: 2px solid white;
  margin-top: 8px;
}
