body {
  background-position: 33% 5%;
  background-color: #ffc0cb;
  background-image: url('/trixie/pink.jpg' );
  background-repeat: repeat;
  background-attachment: fixed;
  background-size:auto;
}


.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: "Itim", cursive;
  font-size: 4rem;
  text-align: center;
}


.image {
  width: 100%;
  min-height: 0px;
  background-image: url(/trixie/spiral.gif);
  background-size: cover;
  margin-left: auto !important;
  margin-right: auto !important;

  min-height: 80px;

  border-radius: 15px;
  color: rgb(0, 0, 0);
}

.side-line {
  position: fixed;
  width: 4px;
  height: 100%;
  background-color: rgb(255, 255, 255);
  z-index: 9999;
}

#left-line {
  left: 15%;
}

#right-line {
  right: 15%;
}

.main-container {
  top: 30%;
  left: 15%;
  padding-right: 15%;
  border-top: #ffffff 3px solid;
  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;
  
  
}

.container-background {
  top: 20%;
  left: 15%;
  right: 15%;
  min-height: 100vh;
  padding-right: 15%;
  background-color: #e9a4d2;
  background-size: cover;
  position: absolute;
  z-index: -1;
}



.after {
  box-sizing: border-box;
}

.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;
}

.floating-image {
  position: fixed;   
  bottom: 20px;      
  left: 20px;        
  z-index: 999;      

}

img {
  border-radius: 15px;
}

.back-button-container {
position: absolute; 
  top: 0;            
  left: 0;          
  width: 100%;        
  text-align: left;

}

.back-button {
  background-color: #f896cc; 
  color: white;
  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: #f896cc;
  transform: scale(1.1);
}