.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;
  color: white;
}


.image {
  width: 100%;
  min-height: 0px;
  background-color: black;
  background-size: cover;
  margin-left: auto !important;
  margin-right: auto !important;

  min-height: 80px;

  border-radius: 15px;
  color: rgb(255, 255, 255);
}

.side-line {
  position: fixed;
  width: 4px;
  height: 100%;
  background-color: white;
  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;
  background-color: rgb(0, 0, 0);
  z-index: -1;
}

.container-background {
  top: 20%;
  left: 15%;
  right: 15%;
  height: 100%;
  overflow-y: auto;
  position: fixed;
  padding-right: 15%;
  background-color: rgb(255, 254, 254);
  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-full {
  max-width: 100%;
  display: block;
  height: 300px;
  grid-column: span 4;
}

.item-wide {
  grid-column: span 3;
}

.item-narrow {
  grid-column: span 1;
}


body {
  background-position: 33% 5%;
  background-image: url('/yolandi/zefbackground.webp');
}

.floating-image {
  position: fixed;   
  bottom: 20px;      
  left: 20px;        
  z-index: 999;      

}

img {
  border-radius: 15px;
}

.shrine-caption {
  text-align: center;
  font-family: "Kirang Haerang", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  margin-top: 5px;
}

.spinning-cd {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  left: 25%;
  align-self: center;
  z-index: -1;
  position: absolute;
  animation: spin 3s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.album-cover {
  width: 250px;
  height: 250px;
}

.back-button-container {
position: absolute; 
  top: 0;            
  left: 0;          
  width: 100%;        
  text-align: left;

}

.back-button {
  background-color: black; 
  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: black;
  transform: scale(1.1);
}