.pushableContainer {
  padding-bottom: 1vw;
}
.pushable1Zoom {
  position: absolute;
  top: 30%;
  left: 29.5%;
}
.pushable1Website {
  position: absolute;
  top: 30%;
  left: 32.7%;
}
.pushable {
  position: relative;
  border: none;
  background: transparent;
  padding: 0;
  width: 100%;
  cursor: pointer;
  outline-offset: 4px;
  transition: filter 250ms;
}
.shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: hsl(0deg 0% 0% / 0.25);
  will-change: transform;
  transform: translateY(2px);
  transition:
    transform
    600ms
    cubic-bezier(.3, .7, .4, 1);
}
.edge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(
    to left,
    #142547 0%,
    #223c75 8%,
    #223c75 92%,
    #142547 100%
  );
}
.front {
  display: block;
  position: relative;
  padding: 0.5vw 1vw;
  border-radius: 10px;
  font-size: 1vw;
  color: white;
  background: #2D509B;
  will-change: transform;
  transform: translateY(-4px);
  transition:
    transform
    600ms
    cubic-bezier(.3, .7, .4, 1);
}
.pushable:hover {
  filter: brightness(110%);
}
.pushable:hover .front {
  transform: translateY(-6px);
  transition:
    transform
    250ms
    cubic-bezier(.3, .7, .4, 1.5);
}
.pushable:active .front {
  transform: translateY(-2px);
  transition: transform 34ms;
}
.pushable:hover .shadow {
  transform: translateY(4px);
  transition:
    transform
    250ms
    cubic-bezier(.3, .7, .4, 1.5);
}
.pushable:active .shadow {
  transform: translateY(1px);
  transition: transform 34ms;
}
.pushable:focus:not(:focus-visible) {
  outline: none;
}