

  .heading {
    font-size: 2vw;
    text-shadow: 4px 4px 0px #354c62;
    mix-blend-mode: screen;
    animation: fadeIn 1.5s linear forwards;
  }

  @keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1;
    }
}

  body{
    display: block;
    background: linear-gradient(90deg, #0e064b, #02010e);	
    color: white;
    text-align: center;
    align-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
    
