html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.pre-loader {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pre-loader-image {
  width: 200px;
  height: 200px;
  animation: pulse 5s cubic-bezier(0.5, 1, 0.89, 1) infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1.05);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1.05);
  }
}/*# sourceMappingURL=style.css.map */