#thief-image {
  height: 100px;
  width: 100px;
  position: absolute;
}

h1,
h4 {
  font-family: "Press Start 2P", system-ui;
  font-weight: 400;
  font-style: normal;
}

#menu,
#end {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 95vh;
}

.start-button,
.restart-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(to bottom, #f9a825, #f57f17);
  color: #fff;
  font-family: "Press Start 2P", system-ui;
  font-size: 36px;
  padding: 15px 30px;
  border: none;
  border-radius: 20px;
  box-shadow: 0 6px #b26a00, inset 0 2px #ffeb3b;
  position: relative;
  cursor: pointer;
  transition: all 0.1s ease-out;
}

.start-button:active,
.restart-button:active {
  box-shadow: 0 2px #b26a00, inset 0 1px #ffeb3b;
  transform: translateY(4px);
}
