   
    
    
    
    
    
    
    /* style.css */
body {
  background: url(/assets/gallery/stars3.gif) repeat;
  font-family: 'Courier New', monospace;
  color: lime;
  text-align: center;
}
html, body {
  
cursor: url('https://playinggamesonmyparentscomputer.neocities.org/vacances/BUSY.cur'), auto;
}

a:hover {
  cursor: url('https://playinggamesonmyparentscomputer.neocities.org/vacances/NORMAL.cur'), auto;
}
  


.container {
  margin: 20px auto;
  width: 80%;
}

h1 {
  font-size: 3rem;
  text-shadow: 1px 1px 0 #000;
  animation: glow 1.5s infinite alternate;
}

@keyframes glow {
  from { color: #fff; text-shadow: 0 0 5px cyan; }
  to { color: #0ff; text-shadow: 0 0 20px magenta; }
}

.gallery-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}


.gallery-links a {
  display: block;
  width: 150px;
  text-decoration: none;
  color: white;
  background: rgba(0,0,0,0.6);
  border: 2px dotted magenta;
  padding: 10px;
  transition: transform 0.2s;
}

.gallery-links a:hover {
  transform: scale(1.1);
  background: rgba(255,0,255,0.2);
}

.gallery-links img {
  width: 100%;
  height: auto;
  image-rendering: pixelated;
}



    
   nav {
  z-index: 99;
 background: url('https://playinggamesonmyparentscomputer.neocities.org/rocky.jpeg') repeat;
      background-repeat: repeat;
  position: fixed;        /* ← CHANGE ici : absolute → fixed */
  top: 0;                 /* ← colle au haut de la fenêtre */
  left: 20px;
  bottom: 600px;
  padding: 10px;
  height: 100vh;          /* ← 100% de la hauteur de la fenêtre */
  width: 250px;
  box-sizing: border-box;
   border-right: 15px solid #e2d3e2;
  border-left: 15px solid #e2d3e2;
      border-radius: 5px;
      border-image: url('https://playinggamesonmyparentscomputer.neocities.org/borderrr.png') 15 round;
}
  
.nav-image-button {
    background: transparent;
  width: 150px;
  height: auto;
  display: block;
  margin: 8px auto;
  image-rendering: pixelated;
}  

.navlink{
  background-color: white;
  display: block;
  padding: 5px;
  margin: 8px 5px 8px;
  width:200px; 
  height: auto;
}
	
.nav-image-container {
  background: none; /* 🔥 aucun fond */
  padding: 0;
  margin: 8px auto;
  text-align: center;
}

.navtitre {
  font-family: 'Jacquard12', sans-serif;
  font-size: 30px;
  color: #3bffff;
  text-align: center;
  text-shadow: 
    0 0 5px #f18ef9,
    0 0 10px #f18ef9,
    0 0 15px #f18ef9;
}


.gif-travaux {
  display: block;
  margin: 30px auto 40px auto; /* top, right, bottom, left */
  width: 600px;       /* 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 #ef2132);
}


@keyframes glowCraft {
  0% {
    filter: drop-shadow(0 0 0px #ef2132);
  }
  100% {
    filter: drop-shadow(0 0 20px #ef2132);
  }
}
