body {
  font-family: "Noto Serif JP", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "HGS明朝E",
    "ＭＳ Ｐ明朝", "MS PMincho", serif;
  -webkit-text-size-adjust: none;
  background: #4f4932;
  padding: 30px;
  color: #f0f0f0;
  line-height: 2;
}

h1 {
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 10px;
  color: #4f4932;
}

.question {
  font-weight: bold;
  font-size: 20px;
  margin-top: 40px;
  color: #f0f0f0;
}

.vote-buttons button .vote-buttons1 button {
  font-family: inherit;
  font-size: 18px;
  margin: 10px 10px 10px 0;
  padding: 10px 25px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  line-height: 2;
  background: #4f4932;
  /* background color */
  color: #f0f0f0;
  /* text color */
  transition: background 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  user-select: none;
}

.vote-buttons button:hover {
  background: #3c3926;
  /* a darker shade on hover */
}

#resetBtn {
  display: none;
  /* hidden by default */
}