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';
}

.splash-screen img {
  animation: logoAnimation 2s ease-in-out infinite;
  height: 400px;
  width: 400px;
  object-fit: contain;
}


@media (max-width: 900px) and (min-width: 500px) {
  .splash-screen img {
    animation: logoAnimation 2s ease-in-out infinite;
    height: 300px;
    width: 300px;
    object-fit: contain;
  }
}
@media (max-width: 500px) and (min-width: 200px) {
  .splash-screen img {
    animation: logoAnimation 2s ease-in-out infinite;
    height: 200px;
    width: 200px;
    object-fit: contain;
  }
}



@keyframes logoAnimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
