.home-page {
  margin: 0;
  padding-left: 15%;
  padding-right: 15%;
  display: flex;
  flex-direction: column-reverse;
  justify-content: start;
  background-color: #FF69B4;
}

.heading {
  font-family: "Barriecito", system-ui;
  font-size: 4rem;
  text-align: center;
}


.main-container {
  top: 30%;
  left: 15%;
  padding-right: 15%;
  padding: 1% 1% 1% 1%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
  grid-auto-flow: dense;
  justify-items: center;
  box-sizing: inherit;
  
  
}

.item {
  max-width: 100%;
  display: block;
  height: auto;
  grid-column: span 2;
}


.item-wide {
  grid-column: span 3;
}

.item-narrow {
  grid-column: span 1;
}

.item-full {
  grid-column: span 6;
}

body {
  background-position: 33% 5%;
  background-image: url('/gallery/wall.jpg');
}

.back-button-container {
position: absolute; 
  top: 0;            
  left: 0;          
  width: 100%;        
  text-align: left;

}

.back-button {
  background-color: #ffffff; 
  color: rgb(0, 0, 0);
  padding: 10px 20px;
  text-decoration: none; 
  font-family: 'Barriecito', cursive;
  font-size: 1.2rem;
  border-radius: 50px;
  border: 2px solid white;
  transition: 0.3s;
  display: inline-block;
}

.back-button:hover {
  background-color: rgb(255, 255, 255);
  color: #000000;
  transform: scale(1.1);

}

img {
    width: 300px;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 110%, #fff 100%);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
}

