body {
  background: linear-gradient(90deg, black, #220033);
  margin: 0;
  display: grid;
  place-items: center;
  padding: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
}

hr {
  border-color: #B49FBF;
}

p {
  margin: 0;
  padding-bottom: 10px;
  font-size: 24px;
  color: #B49FBF;
}

.main-container {
  display: block;
  text-align: left;
}

.container {
  height: 30px;
  width: 330px;
  perspective: 100px;
}

.carousel {
  transform-style: preserve-3d;
  animation: rotate 30s linear infinite;
}

.carousel img {
  position: absolute;
  width: 100%;
  image-rendering: auto;
  box-sizing: border-box;
}
.comment {
  font-size: 24 px;
  color: #B49FBF;
}

.carousel:hover {
  animation-play-state: paused;
  cursor: pointer;
}
.carousel .container:nth-child(1) {
  transform: rotateY(0deg) translateZ(500px);
}
.carousel .container:nth-child(2) {
  transform: rotateY(45deg) translateZ(500px);
}
.carousel .container:nth-child(3) {
  transform: rotateY(90deg) translateZ(500px);
}
.carousel .container:nth-child(4) {
  transform: rotateY(135deg) translateZ(500px);
}
.carousel .container:nth-child(5) {
  transform: rotateY(180deg) translateZ(500px);
}
.carousel .container:nth-child(6) {
  transform: rotateY(225deg) translateZ(500px);
}
.carousel .container:nth-child(7) {
  transform: rotateY(270deg) translateZ(500px);
}
.carousel .container:nth-child(8) {
  transform: rotateY(315deg) translateZ(500px);
}

@keyframes rotate {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.hover-me {
  font-size: 18px;
  font-style: italic;
  color: #B49FBF;
}
.box {
  position: absolute;
  bottom: 0;
  right: 10px;
  color: #B49FBF;
  transform-origin: 0% 10%;
  transform: rotate(-90deg);
  font-size: 15px;
  line-height: 1.4;
}

a:hover {
  color: #EAF6F6;
}

.footer-link {
  font-size: 15px;
}
