
  .container {
    text-align: center;
  }
  button {
        background-color: #007BFF; /* Синий цвет фона */
        color: white; /* Белый текст */
        border: none; /* Убираем границу */
        padding: 10px 20px; /* Внутренние отступы */
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px; /* Размер шрифта */
        margin: 4px 2px; /* Внешние отступы */
        transition-duration: 0.4s; /* Время анимации */
        cursor: pointer; /* Курсор в виде указателя */
        border-radius: 5px; /* Скругление углов */
    }
    button:hover {
        background-color: #0056b3; /* Темно-синий фон при наведении */
        color: white; /* Цвет текста */
    }