html,
body {
  height: 100%;
}

body {
  background-color: #1d1d1d;
  font-family: 'Signika Negative', sans-serif;
  color: #989898;
  margin: 0 10px;
  font-size: 17px;
  text-align: center;
}
.all-gsap-effects {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.flip-container {
  perspective: 1000px;
}

.flip-card {
  width: 200px;
  height: 200px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

.flip-card-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
}

.flip-card-front,
.flip-card-back {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: #3498db;
  color: white;
}

.flip-card-back {
  background-color: #2ecc71;
  color: white;
  transform: rotateY(180deg);
}
.see-more {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border: 1px solid;
  position: absolute;
  cursor: pointer;
  left: 20px;
  top: 20px;
  z-index: 10;
  text-decoration: none;
  color: wheat;
}
