.container {
  position: relative;
  background: var(--secondary-color);
  height: 200px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  transform-style: preserve-3d;
  z-index: 5;
  transition: all 0.4s linear;
  box-shadow: var(--bg-box-shadow);
}
.container:hover {
  transform: perspective(1000px) translateZ(50px);
}

.text {
  font-size: 12px;
  font-weight: 300;
  margin-top: 15px;
  text-align: center;
  line-height: 1.2rem;
  padding: 0px 40px;
}
