body {
  margin: 0;
  padding: 0;
}

.splash-screen {
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #f2f3f8;
  font-family: Poppins, Helvetica, 'sans-serif';
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.splash-screen-suspend-container {
  position: absolute;
  z-index: 999;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.splash-screen-suspend {
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #f2f3f8;
  font-family: Poppins, Helvetica, 'sans-serif';
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: solid;
}

.flip-container {
  perspective: 1000;
  width: 80px;
  text-align: center;
}

.flipper {
  transition: 0.6s;
  transform-style: preserve-3d;
  position: relative;
  height: 70px;
}

.front,
.back {
  width: 80px;
  height: 40px;
  position: absolute;
  left: 0;
  top: 0;
  backface-visibility: hidden;
}

.back {
  transform: rotateY(180deg);
}

.front {
  z-index: 2;
}

@keyframes flipY {
  from {
    transform: rotateY(180deg);
  }

  to {
    transform: rotateY(-180deg);
  }
}

.flip-container .flipper {
  animation: flipY 3s infinite;
}