body {
  margin: 0;
  padding: 0;
}
@keyframes border-pop {
  0% {
    border: 1px #E3EDFF solid;
  }
  50% {
    border: 20px #CBDEFF solid;
  }
  100% {
    border: 1px #E3EDFF solid;

  }
}
.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 {
  margin-left: calc(100vw - 100%);
  margin-bottom: 30px;
  border-radius: 50%;
  animation: border-pop 1s infinite; /* Apply the animation */
}
