@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #1b1b1b;
  height: 100vh;
  margin: 0;
  overflow: hidden;
  cursor: crosshair;
  display: flex;
  justify-content: center;
  align-items: center;
}

#gallery {
  height: 95vh;
  width: 95vw;
  position: relative;
}

#central-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 500px;
  z-index: 10;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

#central-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.block {
  position: absolute;
  width: 150px;
  height: 200px;
  z-index: 1;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.block:hover {
  z-index: 2;
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

/* Responsive video */
@media (max-width: 768px) {
  #central-video {
    width: 60vw;
    height: 80vw;
  }

  .block {
    width: 120px;
    height: 160px;
  }
}

#silence-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 100px;
  font-weight: bold;
  color: #80d0ff; /* Light blue shade */
  pointer-events: none;
  z-index: 15; /* Above the video */
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-align: center;
}

#bottom-text {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    color: #80d0ff;
    font-style: italic;
    text-align: center;
    pointer-events: none;
    z-index: 15;
}