body {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

#global-loader {
  width: 32px;
  height: 32px;
  border: 5px solid #f5f5f5;
  border-top-color: #e4e8ec;
  border-radius: 50%;
  animation: spin .6s linear infinite;
}

@keyframes spin {
    to {
      transform: rotate(360deg);
    }
}
  
