/* styles.css */
body {
  background-color: #0b0c10;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.lights {
  display: flex;
  gap: 15px;
}

.bulb {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
  animation: blink 1.5s infinite alternate;
}

.red { background-color: #ff4c4c; }
.green { background-color: #4cff4c; }
.blue { background-color: #4c4cff; }
.yellow { background-color: #ffff4c; }
.purple { background-color: #b84cff; }

@keyframes blink {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0.5; transform: scale(1.2); }
}
