.logo-container {
    top: 0;
    text-align: center;
    padding: 10px 0;
    background-color: white; /* Background color to ensure logo visibility */
    z-index: 1000; /* Ensure logo appears above other content */
    display: flex; /* Enable flexbox */
    justify-content: center; /* Center horizontally */
}

.logo-container img {
    max-width: 200px; /* Adjust the maximum width of the logo */
    height: auto;
}
	    
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    margin: 0;
    max-width: 50%; /* Ensure each image takes up half of the container */
    max-height: 600px; /* Set a maximum height to prevent clipping */
    height: auto; /* Allow height to adjust based on width */
    object-fit: contain; /* Maintain aspect ratio */
}

.like-button .heart-icon {
  height: 100px;
  width: 100px;
  background: url("https://sidebysidephotos.com/gallery/heart.png");
  background-position: left;
  cursor: pointer;
  position: absolute;
}

.like-button .heart-icon.liked {
  animation: like-anim 0.7s steps(28) forwards;
}

@keyframes like-anim {
  to {
    background-position: right;
  }
}

.like-button .heart-bg {
  background: rgba(255, 192, 200, 0);
  border-radius: 50%;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 100ms ease;
}

.like-button .heart-bg:hover {
  background: rgba(255, 192, 200, 0.7);
}

.like-button {
  display: flex;
  align-items: center;
}

.like-button .likes-amount {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  color: #5986a6;
  font-weight: 700;
  margin-left: 6px;
}

