		* {
	box-sizing: border-box;
	font-family: Tahoma, "Trebuchet MS", sans-serif;	

}

body {
	padding: 16px 8px;
	font-size: 19px;
	line-height: 1.2;
	max-width: 960px;
	margin: 0 auto;
	color: #333;
}

img {
	max-width: 100%;
}

#main {
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#main h4{
padding: 8px 15px;
border-bottom: 2px solid #f9f9f9;
font-weight: bold;
text-align: center;
}


.GalleryContainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 20px;
text-align: center;
}

.GalleryContainer Img {
width: 100px; 
border-radius: 10px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}

.zoomed-img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
}

/* BEGIN LOADER LOADER */
.loader-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.8);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .spinner {
        border: 8px solid #f3f3f3;
        border-top: 8px solid #3498db;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }


    #content {
        display: none;
    }
/* END LOADER */

@media screen and (min-width: 800px) {
	body {
		padding: 16px 32px;
	}

.GalleryContainer Img {
width: 140px; 
}

}