body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #333;
  color: white;
}

.secret-box {
  background-color: #222;
  color: white;
  width: 100px;
  height: 100px;
  font-size: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  border-radius: 5px;
}

.reset-btn-div {
  display: flex;
  justify-content: end;
}

input {
  padding: 6px;
}

.js-check-btn,
.js-reset-btn {
  background-color: red;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  padding: 8px;
  cursor: pointer;
}

.js-reset-btn {
  background-color: yellow;
  color: black;
}