*{
    padding: 0;
    margin: 0;
    font-family: sans-serif;
  }
  body{
    background: #000;
  }
  .container{
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
  }
  .container span{
    text-transform: uppercase;
    display: block;
  }
  .text1{
    color: white;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 20px;
    background: black;
    position: relative;
    animation: text 3s 1;
  }
  .text2{
    font-size: 30px;
    color: #6ab04c;
  }
.text3{
    font-size: 30px;
    color: aqua;
} 

  
  @keyframes text {
    0%{
      color: black;
      margin-bottom: -40px;
    }
    30%{
      letter-spacing: 25px;
      margin-bottom: -40px;
    }
    85%{
      letter-spacing: 8px;
      margin-bottom: -40px;
    }
  }
  
  /* Set the size, colour, font properties for the blinking text */
  .blinking {
    animation: blinkingText 1s infinite;
    font-family: futura;
    font-style: italic;
    width: 25%;
    margin: 0 auto;
    text-align: center;
    color: white;
    font-size: 25px;
    background-color: #fc030b;
}

/* Specifies the animation and transparency for the blinking text */
@keyframes blinkingText {

    0% {
        opacity: 0;
    }
    50% {
        opacity: .5;
    }
    100% {
        opacity: 1;
    }
}