html,
body {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}

body {
  background-color: #5c2b17;
  color: #F6F1E9;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70vh;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.game-title {
  font-size: 36px;
  padding: 0 0 30px 0;
  text-align: center;
}

@media (max-width: 1025px) {
  .game-title {
    padding: 10px 0 0 0;
  }
}

@media (max-width: 414px) {
  .game-title {
    padding: 0 0 20px 0;
  }
}

@media (max-width: 376px) {
  .game-title {
    font-size: 34px;
    padding: 0 0 10px 0;
  }
}

.stats {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-family: "IBM plex mono", "Roboto", Arial, Helvetica, sans-serif;
  padding: 0 0 40px 0;
  margin: 0;
}

.js-result-el {
  font-weight: 700;
  font-size: 18px;
}

.moves-div {
  padding: 0 0 90px 0;
}

.move-btn {
  background-color: #292929;
  font-size: 42px;
  border: 3px solid #FFD93D;
  border-radius: 18px;
  padding: 6px;
  margin: 0 12px;
  transition: all 0.15s ease;

  &:hover {
    cursor: pointer;
    box-shadow: 0 0 14px #F6F1E9;
    transform: translateY(-1px);
  }
}

@media (max-width: 431px) {
  .move-btn {
    font-size: 68px;
  }
}

@media (max-width: 415px) {
  .move-btn {
    font-size: 62px;
  }
}

@media (max-width: 391px) {
  .move-btn {
    font-size: 58px;
  }
}

@media (max-width: 376px) {
  .move-btn {
    font-size: 54px;
  }
}

@media (max-width: 361px) {
  .move-btn {
    font-size: 50px;
  }
}

@media (max-width: 345px) {
  .move-btn {
    font-size: 46px;
  }
}

.reset-score-btn, 
.auto-play-btn {
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 12px 14px;
  transition: all 0.15s ease;

  &:hover {
    cursor: pointer;
  }
}

.reset-score-btn {
  background-color: #9b1d1d;
  color: white;

  &:hover {
    background-color: #be2828;
  }
}

.auto-play-btn {
  background-color: #d3d3d3;

  &:hover {
    background-color: #ffffff;
  }
}

@media (max-width: 600px) {
  .reset-score-btn,
  .auto-play-btn {
    font-size: 22px;
    padding: 16px 20px;
  }
}