  .bottom-left-WORKS {
    
    float: left;
    font-size: 50px;
    font-family: Arial, Helvetica, sans-serif;
    bottom: 0;
    
  }
  .bottom-right-WORKS {
    float: right;
    font-size: 50px;
    font-family: Arial, Helvetica, sans-serif;
    bottom: 0;
  }


  * {
    margin: 0px;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f3f3f3;
  }


 /* Fixed position for navigation */
 .TOMAIN_stone {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 10;
  }
  
  /* Position and resize the TOMAIN_stone on larger screens */

  .TOMAIN_stone {
    left: 10px;
  }
  
  /* Default sizes for larger screens */
  .TOMAIN_stone img{
    width: 189px;
    height: 106px;
  }

  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    /* Adjust positioning and size on medium screens */
    .TOMAIN_stone {
      top: 5px;
    }
  
    .TOMAIN_stone img {
      width: 100px; /* Scale down for smaller screens */
      height: auto; /* Maintain aspect ratio */
    }
  }
  


  
  .grid-container {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 50px;
   
    max-width: 300%;
    position: relative;
    width: 90%; /* The grid container takes up 75% of the viewport width */
    margin-left:  auto; /* Center the grid container horizontally */
    margin-right:  auto; /* Center the grid container horizontally */
    margin-top:  100px; /* Center the grid container horizontally */
    margin-bottom:  3%; /* Center the grid container horizontally */
  }
  
  .grid-item {
    position: relative;
    overflow: hidden;
  }
  
  .grid-item img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    transition: filter 0.3s ease;
  }
  
  .grid-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: right;
    align-items: top;
    color: #000000;
    background: #ffffff00;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-family: Arial, Helvetica, sans-serif;
   
    font-size: 2vw;
    text-align: center;
    
    padding: 10px;
    pointer-events: none;
  }
  

  
  h4 {
	font-family: Arial, Helvetica, sans-serif;
    font-size: 2vw;
	color: white;
    text-align: right;

}

h4 span {
	background-color: #0dff00;
	padding: 6px;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	line-height: 4vw;
}
  
  .grid-item:hover .overlay {
    opacity: 1;
  }
  


  
  
  /* Grid item size classes */
  .size-1x1 {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .size-2x2 {
    grid-column: span 2;
    grid-row: span 2;
  }
  
  .size-2x3 {
    grid-column: span 2;
    grid-row: span 3;
  }
  
  .size-1x3 {
    grid-column: span 1;
    grid-row: span 3;
  }
  
  .size-3x2 {
    grid-column: span 3;
    grid-row: span 2;
  }
  
  .size-3x3 {
    grid-column: span 3;
    grid-row: span 3;
  }
  
  .size-3x4 {
    grid-column: span 3;
    grid-row: span 4;
  }
  
  .size-3x5 {
    grid-column: span 3;
    grid-row: span 5;
  }
  
  .size-4x3 {
    grid-column: span 4;
    grid-row: span 3;
  }
  
  .size-5x3 {
    grid-column: span 5;
    grid-row: span 3;
  }
  