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;
  font-family: Poppins, Helvetica, 'sans-serif';
  background: #34e89e;
  background: -webkit-linear-gradient(to right, #0f3443, #34e89e);
  background: linear-gradient(to right, #0f3443, #34e89e);
}

.splash-screen img {
  margin-left: calc(100vw - 100%);
  margin-bottom: 30px;
  max-width: 280px;
}

.splash-screen-text {
  color: #2C3E50;
  font-size: 24px;
  font-weight: 500;
}

#root {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}
