* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
}

.screen {
  text-align: center;
}

/* заголовки */
h1, h2 {
  margin: 10px 0;
}

/* кнопки */
.buttons {
  display: flex;
  flex-direction: column;
  gap: 12px; /* расстояние между кнопками */
  margin-top: 20px;
}

button {
  font-size: 22px;
  padding: 12px 20px;
  min-width: 220px;
  border-radius: 12px;
  border: none;
  background: #4CAF50;
  color: white;
  cursor: pointer;
  transition: transform 0.1s, background 0.2s;
}

button:hover {
  background: #45a049;
}

button:active {
  transform: scale(0.97);
}

/* поле ввода */
input {
  font-size: 22px;
  width: 100px;
  text-align: center;
  padding: 6px;
}

/* прогресс */
#progress {
  font-size: 20px;
  margin-bottom: 5px;
}

/* текст задания */
p {
  margin: 8px 0;
}
