*{
    font-family: 'Poppins', sans-serif;
}

/* Base */
body {
    padding: 0;
    margin: 0;
    background-color: #000137;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }
  body h1 {
    color: hsl(0, 5%, 92%);
    font-weight: bold;
    font-size:55px;
    font-family: 'Prata', serif;
    letter-spacing: 7px;
    cursor: pointer;
    text-transform: uppercase;
  }
  
  h1 {
    background: linear-gradient(to right, hsl(0, 5%, 92%) 0, hsl(0, 0%, 100%) 10%, hsl(0, 0%, 30%) 20%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s infinite linear;
  }
  
  @keyframes shine {
    0% {
      background-position: 0;
    }
    60% {
      background-position: 600px;
    }
    100% {
      background-position: 600px;
    }
  }