body {
  margin: 0;
}

html {
  overflow-x: hidden;
  overflow-y: scroll;
}

.svg-container
{
  display: flex;
  align-items: center;
  height: 100vh;
}

.loading-image {
  width: 100px;
  margin: 0 auto;
  display: block;
  animation-name: grow-shrink;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes grow-shrink {
  0% {
    transform: scale(1);
    transform-origin: center;
  }
  50% {
    transform: scale(1.25);
    transform-origin: center;
  }
  100% {
    transform: scale(1);
    transform-origin: center;
  }
}
