* {
  padding: 0;
  margin: 0;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;

  background-color: #341b5f;
}

.tiny5-regular {
  font-family: "Tiny5", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
}

.title {
  font-size: 50px;
  color: #f5e612;
}

#gameBoard {
  background: #ec13a4;
  border-radius: 5px;
}

.score {
  font-size: 50px;
  color: #f5e612;
}

#wall,
#speedy,
#hard,
#infite {
  padding: 5px 10px;
  border-radius: 5px;
  font-family: "Tiny5", sans-serif;
  font-size: 15px;
  background-color: #f5e612;
  color: #341b5f;
  border: none;
  cursor: pointer;
}

.btns {
  width: 500px;
  display: flex;
  justify-content: space-between;
}

.resetBtn,
.pauseBtn,
.startBtn {
  padding: 5px 10px;
  border-radius: 5px;
  font-family: "Tiny5", sans-serif;
  font-size: 25px;
  background-color: #f5e612;
  color: #341b5f;
  border: none;
  cursor: pointer;
}

.direction-btn {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 100px;
}

.upper-btn,
.lower-btn {
  display: flex;

  justify-content: center;
  align-items: center;
  gap: 30px;
}

.up,
.down,
.left,
.right {
  background-color: #f5e612;
  border: none;
  border-radius: 5px;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
