*{
  font-family: 'Common Pixel', sans-serif;
}

a{
  cursor:url("images/cursor.png"), url("images/cursor.cur"), default;
}

  #start {
    position: absolute;
    width: 100%;
    height: 100vh;
    background-size: cover;
      background-position: center;
      background-repeat: repeat;
    background-image:url(images/start.png);
    z-index: 2;
  }


  @import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap'); 
  
  
  body { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    min-height: 100vh; 
    overflow: hidden;
    cursor: url(CURSOR_URL), auto;
    font-family: 'Common Pixel', sans-serif; } 
  
  ul { 
    position: relative; } 
  
  ul li { 
    list-style: none; 
    text-align: center; } 
  
  ul li a { 
    color: rgb(255, 0, 0); 
    text-decoration: none; 
    font-size: 3em; 
    padding: 5px 20px; 
    display: inline-flex; 
    font-weight: 700; 
    transition: 0.5s; } 
  
  ul:hover li a { 
    color: #0002; } 
  
  ul li:hover a { 
    color: #000; 
    background: rgba(255,255,255,1); } 
  
  ul li a:before { 
    content: ''; 
    position: absolute; 
    top: 50%; 
    left: 40%; 
    transform: translate(-50%,-50%); 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    font-size: 5em; 
    color: rgba(0,0,0,.1); 
    border-radius: 50%; 
    z-index: -1; 
    opacity: 0; 
    font-weight: 900; 
    text-transform: uppercase; 
    letter-spacing: 500px; 
    transition: letter-spacing 0.5s,left 0.5s; } 
  
  ul li a:hover:before { 
    content: attr(data-text); 
    opacity: 1; 
    left: 50%; 
    letter-spacing: 10px; 
    width: 1000px; 
    height: 1000px; } 
  
  ul li:nth-child(6n+1) 
  
  a:before { background: #8e5191; } 
  
  ul li:nth-child(6n+2) 
  
  a:before { background: #31558b; } 
  
  ul li:nth-child(6n+3) 
  
  a:before { background: #808080; } 
  
  ul li:nth-child(6n+4) 
  
  a:before { background: red; } 

  .text {
    text-align: center;
    position: relative;
    width: 800px;
    left: 450px;
    color: red;
  }
  
  .box {
    text-align: center;
    position: absolute;
    left: 830px;
    color: white;
    background-color: black;
  }

   /* DEMO-SPECIFIC STYLES */
   .typewriter h1 {
    color: rgb(10, 239, 255);
    font-family: 'Common Pixel', sans-serif;
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    border-right: .15em solid purple; /* The typwriter cursor */
    white-space: nowrap; /* Keeps the content on a single line */
    margin: 0 auto; /* Gives that scrolling effect as the typing happens */
    letter-spacing: .15em; /* Adjust as needed */
    margin-left: 400px;
    animation: 
      typing 3.5s steps(30, end),
      blink-caret .5s step-end infinite;
  }
  
  /* The typing effect */
  @keyframes typing {
    from { width: 0 }
    to { width: 100% }
  }
  
  /* The typewriter cursor effect */
  @keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: purple }
  }

  #output {
    color: blanchedalmond;
    border: 5px solid white;
    position: relative;
    text-align: center;
  }