/* Общие стили для всей страницы */
body {
  margin: 0;
  padding: 0;
  background: #0f0f0f;
  color: white;
  font-family: 'Courier New', Courier, monospace;
  text-align: center;
  overflow-x: hidden;
}

/* Фоновый шум — канвас */
#bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

/* Основной контейнер с контентом */
.content {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Заголовок */
#title {
  font-size: 3rem;
  margin-bottom: 10px;
}

/* Подзаголовок */
#subtitle {
  font-size: 1.5rem;
  color: #aaa;
  margin-bottom: 20px;
}

/* Описание */
#description {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 30px;
}

/* Навигационные ссылки */
#links {
  margin-bottom: 40px;
}
#links a {
  margin: 0 15px;
  color: #00ffff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}
#links a:hover {
  color: #ff00ff;
}

/* Галерея */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

/* Один элемент галереи */
.gallery-item {
  text-align: center;
  max-width: 200px;
}

/* Стили для изображений */
.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

/* При наведении увеличиваем изображение */
.gallery-item img:hover {
  transform: scale(1.05);
}

/* Подпись под картинкой */
.gallery-caption {
  margin-top: 10px;
  font-size: 14px;
  color: #ccc;
}