.photo-frame {
  background: white;
  padding: 10px;
  border: 2px solid #ddd;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transform-origin: center center;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 300px;
height: 300px;
margin: 5px;
}

.photo-frame:hover {
  transform: scale(1.05) rotate(0deg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.photo {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.rotate-left {
  transform: rotate(-5deg);
}

.rotate-right {
  transform: rotate(5deg);
}

@media (max-width: 600px) {
  .photo-frame {
    transform: rotate(0deg) !important;
    width: 200px;
    height: 200px;
  }
}

.glide__slides {
  align-items: center;
  height: 350px;
}

.glide__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 350px;
}

.glide__track {
  overflow: visible;
  padding-top: 20px;
  padding-bottom: 20px;
}