/* gallery.css */



html, body {
  
cursor: url('https://playinggamesonmyparentscomputer.neocities.org/vacances/BUSY.cur'), auto;
}
a:hover {
  cursor: url('https://playinggamesonmyparentscomputer.neocities.org/vacances/NORMAL.cur'), auto;
}
  


.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  padding: 20px;
  background: transparent;
}

.image-grid img {
  width: 100%;
  border: 2px solid purple;
  cursor: pointer;
  image-rendering: pixelated;
}
.image-grid img:hover {
  cursor: url('https://playinggamesonmyparentscomputer.neocities.org/vacances/NORMAL.cur'), auto;
}
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.lightbox img {
  max-width: 80%;
  max-height: 80%;
  border: 3px black;
}

.gif-weirdcore {
  display: block;
  margin: 30px auto 40px auto; /* top, right, bottom, left */
  width: 500px;       /* ou la taille que tu veux */
  max-width: none;    /* 🔥 empêche qu'on limite sa taille */
  height: auto;
  z-index: 10;
  animation: glowCraft 1s infinite alternate;
  filter: drop-shadow(0 0 0px #ff00ff);
}
.topleft {
 position: top left; 
}

    #exitImage {
      position: fixed;
      top: 10px;
      left: 10px;
      width: 150px; /* ajuste selon ton image */
      height: auto;
      cursor: pointer;
      z-index: 1000;
      transition: transform 0.2s ease;
    }

    #exitImage:hover {
      transform: scale(1.1);
      cursor: url('https://playinggamesonmyparentscomputer.neocities.org/vacances/NORMAL.cur'), auto;
    }
    
    
    
    
    
    
    
    
    
    
    
    .note-intention {
  max-width: 1200px;
  margin: 0 auto 30px auto;
  padding: 20px;
  border: 2px dashed #ff00ff;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-family: 'Courier New', monospace;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 15px #ff00ff;
  animation: floatIntent 6s ease-in-out infinite alternate;
}

.note-intention h2 {
  margin-top: 0;
  font-size: 24px;
  color: #ffccff;
  text-transform: uppercase;
}

@keyframes floatIntent {
  0%   { transform: translateY(0px); }
  100% { transform: translateY(-5px); }
}

    
   