.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 97vh;
  }
  
  .container h1 {
    font-family: "Dosis", sans-serif;
    background: linear-gradient(130deg, #CE9FFC 0%, #7367F0 100%);
    color: white;
    padding: 10px;
    border-radius: 10px;
  }
  
  .container .loader {
    width: 200px;
    height: 200px;
    transition: .5s ease-in-out;
    animation: loaderAnim 1s infinite;
  
    /* Thanks @yuanchuan www.codepen.io/yuanchuan/pen/vVRKRQ */
    background:
      conic-gradient(
        from 90deg,
        transparent 12.5%, #CE9FFC 12.5%,
        #7367F0 37.5%, transparent 37.5%,
        transparent 62.5%, #7367F0 62.5%,
        #CE9FFC 87.5%, transparent 87.5%
      )
      50% 50% / 32% 50%
      no-repeat;
  }
  
  /* Animations */
  @keyframes loaderAnim {
    0% {
      transform: rotate(0);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /* Hourglass CSS */
  .hourglass {
    position: relative;
    width: 100px;
    height: 200px;
    border: 5px solid #000;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .hourglass .top,
  .hourglass .bottom {
    position: absolute;
    width: 100%;
    height: 50%;
    background-color: #f3f3f3;
  }
  
  .hourglass .top {
    top: 0;
  }
  
  .hourglass .bottom {
    bottom: 0;
  }
  
  .hourglass .top:before,
  .hourglass .bottom:before {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    background-color: #000;
    transform-origin: bottom;
  }
  
  .hourglass .top:before {
    left: 0;
    border-radius: 50% 50% 0 0;
    transform: skewX(45deg) rotate(180deg);
  }
  
  .hourglass .bottom:before {
    right: 0;
    border-radius: 0 0 50% 50%;
    transform: skewX(-45deg) rotate(180deg);
  }
  