body {
    font-family: sans-serif; 
    line-height: 1.6;
    padding: 2rem;
    margin: 0;
    color: rgb(255, 0, 187);
    background-image: url("Images/Background.jpg"); /* 🔥 your texture here */
  background-size: cover;            /* scale to cover the full screen */
  background-attachment: fixed;      /* 🔑 this makes the texture *stay in place* while content scrolls */
  background-repeat: repeat;         /* or 'no-repeat' if using a large image */
  background-position: center;
  }
  
  h1 {
    text-align: center;
    margin-bottom: 2rem;
  }
  h2 {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .wrapper {
    position: relative;
    width: 250px;
    margin-bottom: 100px;
    text-align: center;
    color: #333;
    transition: transform 0.3s ease;
  }
  
  .wrapper:hover {
    transform: scale(1.05);
  }
  
  .wrapper img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  /* Floating label on hover */
  .label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    font-size: 0.8rem;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .wrapper:hover .label {
    opacity: 1;
  }
  
  /* Positioning styles */
  
  .static-box {
    position: static;
  }
  
  .relative-box {
    position: relative;
    top: 30px;
    left: 40px;
  }
  
  .absolute-box {
    position: absolute;
    top: 700px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .fixed-box {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 150px;
    z-index: 1000;
  }
  
  /* Sticky example */
  .sticky-box {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    margin-top: 200px;
  }
  
  /* Scroll space */
  .spacer {
    height: 2000px;
  }