body {
  background-color: #fff7e6; /* кремовый фон */
  font-family: Arial, sans-serif;
  text-align: center;
  color: #333;
  margin: 0;
  padding: 0;
}

h1 {
  margin-top: 50px;
}

.links {
  margin-top: 50px;
  display: flex;           /* включаем flex */
  flex-direction: column;  /* размещение по вертикали */
  align-items: center;     /* выравнивание по центру горизонтально */
  gap: 20px;               /* расстояние между кнопками */
}


a {
  font-size: 24px;
  text-decoration: none;
  color: #1a5e9a;
  padding: 10px 20px;
  border: 2px solid #1a5e9a;
  border-radius: 8px;
  transition: 0.3s;
}

a:hover {
  background-color: #1a5e9a;
  color: white;
}

.back {
  display: inline-block;
  margin-top: 50px;
  font-size: 18px;
}
