body {
  background-image: url('blck.gif'); /* your black GIF */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0;
  padding: 50px 0;
  font-family: "Comic Sans MS", cursive, sans-serif;
}

/* ===== NEON TEXT ===== */
.neon {
  text-align: center;
  font-size: 64px;
  color: #ff69b4;
  text-shadow: 
    0 0 5px #ff69b4,
    0 0 10px #ff69b4,
    0 0 20px #ff1493,
    0 0 40px #ff1493,
    0 0 80px #ff1493;
  margin-bottom: 50px;
}

.neon span {
  display: inline-block;
  animation: twinkle 1.5s infinite;
}

@keyframes twinkle {
  0%, 100% { text-shadow: 
      0 0 5px #ff69b4,
      0 0 10px #ff69b4,
      0 0 20px #ff1493,
      0 0 40px #ff1493,
      0 0 80px #ff1493; }
  50% { text-shadow: 
      0 0 10px #fff,
      0 0 20px #ff69b4,
      0 0 30px #ff1493,
      0 0 50px #ff69b4,
      0 0 100px #ff1493; }
}

/* ===== PAINT WINDOW - SKINNIER AND TALLER, MIDDLE LEFT ===== */
.paint-window {
  width: 250px;                 /* skinnier */
  height: 250px;                /* taller */
  border: 4px solid #000;
  border-radius: 4px;
  background-color: #c0c0c0;   
  box-shadow: 4px 4px 10px rgba(0,0,0,0.5);
  position: fixed;              
  top: 55%;                     /* slightly lower than middle */
  left: 20px;                   
  transform: translateY(-50%);  /* aligns window vertically relative to top */
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 10;                  
}

/* Header bar like MS Paint */
.paint-header {
  background-color: #000080;
  color: white;
  font-weight: bold;
  padding: 3px 5px;             
  text-align: center;
  font-size: 12px;              
}

/* Scrollable content inside paint window */
.paint-content {
  background-color: white;
  flex: 1;
  overflow-y: auto;  
  padding: 5px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Images inside the paint window */
.paint-content img {
  width: 100%;
  height: auto;
  border: 1px solid #000;
}