* {
    box-sizing: border-box;
    color: #282722;
  }
  
  body {
    align-items: center;
    background-color: #000000;
    display: flex;
    height: 100vh;
    justify-content: center;
    margin: 0;
    overflow: hidden;
  }

  h1 {
    margin-left: 60px;
    width: 160px 
  }
  
  .hey-coffee-club {
    height: 80px;
    position: relative;
    width: 80px;
  }
  
  .hey-coffee-club::after,
  .hey-coffee-club::before {
    animation: rotateA 2s linear infinite 0.5s;
    border: 50px solid transparent;
    border-bottom-color: #282722;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    top: 0;
    width: 0;
  }
  
  .hey-coffee-club::before {
    animation: rotateB 2s linear infinite;
    transform: rotate(90deg);
  }

  .hey-coffee-club__loading {
    font-size: 30px;
  }
  
  .hey-coffee-club__loading:after {
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
    -webkit-animation: ellipsis steps(4,end) 900ms infinite;      
    animation: ellipsis steps(4,end) 900ms infinite;
    content: "\2026"; /* ascii code for the ellipsis character */
    width: 0px;
  }
  
  @keyframes ellipsis {
    to {
      width: 1.25em;    
    }
  }
  
  @-webkit-keyframes ellipsis {
    to {
      width: 1.25em;    
    }
  }
  
  
  @keyframes rotateA {
    0%,
    25% {
      transform: rotate(0deg);
    }
    50%,
    75% {
      transform: rotate(180deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes rotateB {
    0%,
    25% {
      transform: rotate(90deg);
    }
    50%,
    75% {
      transform: rotate(270deg);
    }
    100% {
      transform: rotate(450deg);
    }
  }
  