<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html {
  font-family: 'Lato', sans-serif;
}
.container {
  width:500px;
  margin:0 auto;
  background-color: #fff;
  padding: 50px 80px;
  position:relative;
}
.container .card-stack {
  width: 500px;
  height: 250px;
  position: absolute;
  margin: 20px auto;
}
.container .card-stack .buttons {
  display: none;
  position: absolute;
  background: rgba(0, 0, 0, 0.46);
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  left: 0;
  top: 55%;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  line-height: 35px;
  text-decoration: none;
  font-size: 22px;
  z-index: 100;
  outline: none;
  transition: all 0.2s ease;
}
.container .card-stack .buttons:hover {
  transform: scale(1.3, 1.3);
}
.container .card-stack .prev {
  left: 15px;
  right: auto;
}
.container .card-stack .next {
  left: auto;
  right: 15px;
}
.container .card-stack .carousel .buttons:hover {
  color: #C01313;
  background: #fff;
}
.container .card-stack .card-list {
  width: 300px;
}
.container .card-stack .card-list__image {
  height: 200px;
}
.container .card-stack .card-list__text {
  color: #fff;
  font-weight: 300;
}
.container .card-stack .card-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 100ms ease-in-out;
  border-radius: 10px;
  position: absolute;
  list-style: none;
  height: 300px;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding-top: 20px;
  text-align: center;
  -webkit-box-shadow: 0 2px 15px 1px rgba(225, 225, 225, 0.5);
  box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.5);
}
.container .card-stack .card-list li:nth-child(1) {
  top: 24px;
  width: 60%;
  /* animation: scaleCard 100ms; */
}
.container .card-stack .card-list li:nth-child(2) {
  top: 36px;
  width: 70%;
}
.container .card-stack .card-list li:nth-child(3) {
  top: 48px;
  width: 80%;
}
.container .card-stack .card-list li:nth-child(4) {
  top: 60px;
  width: 90%;
}
.container .card-stack .card-list li:nth-child(5) {
  top: 72px;
  width: 100%;
}
.container .card-stack:hover &gt; .buttons.prev {
  display: block;
  animation: bounceInLeft 200ms;
}
.container .card-stack:hover &gt; .buttons.next {
  display: block;
  animation: bounceInRight 200ms;
}
.transformThis {
  animation: scaleDown 500ms;
}
.transformPrev {
  animation: scaleUp 100ms;
  display: none;
}
@keyframes scaleUp {
  0% {
    transform: scale(1.2) translateY(50px);
    opacity: 0;
  }
  20% {
    transform: scale(1.15) translateY(40px);
    opacity: 0.1;
  }
  40% {
    transform: scale(1.1) translateY(30px);
    opacity: 0.2;
  }
  60% {
    transform: scale(1.05) translateY(20px);
    opacity: 0.4;
  }
  80% {
    transform: scale(1.01) translateY(10px);
    opacity: 0.8;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}
@keyframes scaleDown {
  0% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
  20% {
    transform: scale(1.01) translateY(20px);
    opacity: 0.8;
  }
  40% {
    transform: scale(1.05) translateY(40px);
    opacity: 0.4;
  }
  60% {
    transform: scale(1.1) translateY(60px);
    opacity: 0.2;
  }
  80% {
    transform: scale(1.15) translateY(80px);
    opacity: 0.1;
  }
  100% {
    transform: scale(1.2) translateY(100px);
    opacity: 0;
  }
}
@keyframes scaleCard {
  0% {
    top: 5px;
  }
  100% {
    top: 24px;
  }
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    transform: translateX(0);
  }
}
</pre></body></html>