.main{
  background-color:#ffc98b;
}
.title-container {
  width: 100%;
  height: 100px;
  padding-bottom: 35%;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  animation: rotateImages 30s linear infinite;
  display: flex;
  background-position: center center;
  z-index: 1;
}

@keyframes rotateImages {
  0% {
    background-image: url('img/title1.jpg');
  }
  12.5%, 25% {
    background-image: url('img/title2.jpg');
  }
  37.5%, 50% {
    background-image: url('img/title3.jpg');
  }
  62.5%, 75% {
    background-image: url('img/title4.jpg');
  }
  87.5%, 100%, 0% {
    background-image: url('img/title5.jpg');
  }
  112.5%, 125% {
    background-image: url('img/title6.jpg');
  }
  137.5%, 150% {
    background-image: url('img/title7.jpg');
  }
  162.5%, 175% {
    background-image: url('img/title8.jpg');
  }
  187.5%, 200%, 0% {
    background-image: url('img/title1.jpg');
  }
}

h1{
  position: absolute;
  color: rgb(255, 255, 255);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-family: 'Poppins', sans-serif;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}



.koriContainer {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;

}

.koriContainer input {
  display: block;
  width: 20%;
  transition: width 0.5s;
}

.koriContainer input:hover {
  width: 25%;
  animation: shake 0.3s;
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }

  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }

  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }

  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }

  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }

  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }

  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }

  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }

  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }

  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }

  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}

.caption {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1vh;
  text-align: center;
  width:54%;
  margin-left:23%;
  margin-top:20px;
  margin-bottom:20px;
}
.instagramContainer {
  width: 100%;
  display: grid;
  justify-content: center;
  grid-template-columns: 400px 400px 400px;
  gap: 40px;
}
