  .gif-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
  }
  .gif-container img {
    max-width: 48%;
    height: auto;
    border-radius: 8px;
  }

  a.green-btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 20px;
  border-radius: 8px;
  background: #20e80e;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

a.green-btn:hover {
  background: #1bb50c; /* чуть темнее зелёный */
}

/* Таблицы */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table th, table td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
}

table thead tr {
    background-color: #e6f2ff;
}

  /* Для мобильных устройств */
  @media (max-width: 768px) {
    .gif-container img {
      max-width: 100%;
    }

  }