
body {
  margin: 0;
  background-color: black;
  color: white;
  font-family: sans-serif;
}

.monitor {
  position: absolute;
  width: 15%;
  height: 20%;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.monitor .overlay {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  font-size: 10px;
}

.monitor:hover .overlay {
  opacity: 1;
}

#monitor1 .overlay {
  top: 30%;
  left: 10%;
}

#monitor2 .overlay {
  top: 30%;
  left: 42%;
}

#monitor3 .overlay {
  top: 30%;
  left: 74%;
}

.retro-text {
  font-family: 'Press Start 2P', cursive;
  font-size: 1rem;
  color: #ff0000;
}

.glow {
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.7);
  transition: all 0.4s ease-in-out;
}

img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}
