/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: black;
  color: black;
  font-family: Verdana;
}  
.floating-gift {
    position: fixed; /* Fixes the image in place, even when scrolling */
    bottom: 20px;    /* Distance from the bottom of the screen */
    right: 20px;     /* Distance from the right side of the screen */
    z-index: 9999;   /* Ensures it stays on top of other content */
    transform: scale(2.5)
}

.stamp-grid {
  display: grid;
  /* Adjust 100px based on your stamp width + margin */
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); 
  gap: 10px; /* Space between stamps */
  padding: 10px;
}

.stamp-grid img {
  width: 100%; /* Makes images fill the grid cell */
  height: auto;
}
.stamp-grid img {
  width: 100%; /* Makes images fill the grid cell */
  height: auto;
}
.stamp-grid img {
  width: 100%; /* Makes images fill the grid cell */
  height: auto;
}
.stamp-grid img {
  width: 100%; /* Makes images fill the grid cell */
  height: auto;
}