.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(16px);
  background-color: #140C3166;
  overflow: hidden;
  transition: background-color 1s ease-in-out;
}

.curtain {
  position: absolute;
  top: 0;
  width: 50vw;
  height: 100vh;
  background-color: #140C3199;
  transition: width 1s ease-in-out;
}

.curtain-left {
  left: 0;
}

.curtain-right {
  right: 0;
}

.business-card{
  transition: opacity 1s ease-in-out;
}

.splash-screen-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-25vw, -50%);
  z-index: 10000;
  transition: opacity 1s ease-in-out;
}

.splash-screen-logo img {
  width: 50vw;
}
