/* Apply styles to body */
body {
      display: flex;
      justify-content: flex-start;
      align-items: center; 
      height: 20vh; 
      margin: 0; 
      font-family: Arial , sans-serif;
      margin-left: 2rem; 
      color: #716E6C;
    }
	
/* Loading animation from https://loading.io/css/*/
.lds-ripple {
    /* change color here */
    color: #A69E9A
  }
.lds-ripple,
.lds-ripple div {
    box-sizing: border-box;
  }
.lds-ripple {
    display: inline-block;
    position: relative;
    width: 100px;
    height: 80px;
  }
.lds-ripple div {
    position: absolute;
    border: 4px solid currentColor;
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  }
.lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
  }
@keyframes lds-ripple {
    0% {
      top: 36px;
      left: 36px;
      width: 8px;
      height: 8px;
      opacity: 0;
    }
    4.9% {
      top: 36px;
      left: 36px;
      width: 8px;
      height: 8px;
      opacity: 0;
    }
    5% {
      top: 36px;
      left: 36px;
      width: 8px;
      height: 8px;
      opacity: 1;
    }
    100% {
      top: 0;
      left: 0;
      width: 80px;
      height: 80px;
      opacity: 0;
    }
  }
