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

.container {
  height: 100vh; 
  display: flex;
  justify-content: center; 
  align-items: center;
  z-index: 1;
}

.image-row {
  display: flex;
  gap: 101px;
}

.image-row a img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  opacity: 1;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.image-row a img:hover {
  transform: scale(1.1);
  opacity: 0.9;
  cursor: pointer;
}

body {
    background-image: linear-gradient(145deg, #a14bdb, #7474ce);
}

#particles-js {
  position: fixed;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
