/* This file is for the loading spinner */

.spinner {
  width: 70vw;
  height: 70vh;
  display: flex;
}

.spinner::after{
  content: "";
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #777879;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}