.loading_indicator {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: 0.65s ease-in-out 0s infinite alternate breathe;
  opacity: 0.85;
  transition: opacity 0.4s ease-out;
}

body {
  background-color: #ffffff;
  height: 1000vh;
  width: 1000vw;
  margin: 0px;
}

@keyframes breathe {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(0.9);
  }
}
