.frame {
  height: 90vh;
  width: 90vw;
  margin: 5vh 5vw;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically */
  background-color: #eee;
  background-position: center;
  background-size: cover;
  border: 10px solid transparent; /* Transparent border for outer glow */
  border-radius: 20px; /* Curved edges for a sleek look */
  background-clip: padding-box; /* Keeps the background inside the border */
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.7), 
              0 0 40px rgba(0, 255, 255, 0.5), 
              0 0 60px rgba(0, 255, 255, 0.3); /* Multi-layer glowing effect */

  position: relative; /* To allow ::before pseudo-element positioning */
  animation: image 30s infinite linear;
}

.frame::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid rgba(0, 255, 255, 0.8); /* Futuristic neon-style border */
  border-radius: 25px;
  filter: blur(10px); /* Softens the glow */
  z-index: -1; /* Puts the glow behind the frame */
}

.frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3px solid transparent;
  border-radius: 20px;
  background: linear-gradient(90deg, rgba(37, 37, 213, 0.5), rgba(132, 109, 121, 0.5));
  background-clip: padding-box;
  z-index: 1;
  animation: pulse 20s infinite ease-in-out;
}

@keyframes pulse {
  10% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}


@keyframes image {

  10% {
    background-image: url("../images/kuleli.jpg");
  }
  20% {
    background-image: url("../images/wing.jpg");
  }
  30% {
    background-image: url("../images/kuleli2.jpg");
  }
  40% {
    background-image: url("../images/alatu.jpg");
  }
  50% {
    background-image: url("../images/cups.jpeg");
  }
  60% {
    background-image: url("../images/itu.jpg");
  }
  70% {
    background-image: url("../images/cyprus.jpg");
  }
}

/*# sourceMappingURL=imagetransition.css.map */
