body {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg,red,orange,red,orange,red,orange,red,orange);
  background-size: 1000% 100%;
  animation: create-rainbow-gradient-shift 30s ease infinite;
  text-align: center
}
.tainer {
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-45%,-45%)
}
.feat {
  width: 370px;
  }
  .feat:hover {
    transform: scale(1.1);
    transition: 60ms;
    transform-origin: center;
    cursor: pointer;
}
.tainer2 {
    top: -510px;
    left: -180px;
    z-index: 2;
    display: block;
    position: relative;
}

.vibes {
  z-index: 1;
  display: flex;
  transform:rotate(2deg);
}
.vibin {
  border: 5px solid #000
}






@keyframes create-rainbow-gradient-shift {
  0% {
    background-position: 0 50%
  }
  100% {
    background-position: 100% 100%
  }
}  /* are you r3s1st1ng? */