body {
    background: rgb(163,247,181);
    background: linear-gradient(20deg, rgba(163,247,181,1) 0%, rgba(47,156,149,1) 100%);
    color: #333;
  }
  
  @keyframes fadeIn {
    from {top: 20%; opacity: 0;}
    to {top: 100; opacity: 1;}
  }
  
  @-webkit-keyframes fadeIn {
    from {top: 20%; opacity: 0;}
    to {top: 100; opacity: 1;}
    
  }
  
  .wrapper {
    position: absolute;
    left: 50%;
    top: 45%;
    text-align: center;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    animation: fadeIn 1000ms ease;
    -webkit-animation: fadeIn 1000ms ease;
    width: 80%;
  }
  
  .logo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -100;
    width: 50%;
  }
  
  h1 {
    font-size: 90px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0;
    line-height: 1;
    font-weight: 700;
    z-index: 100;
  }
  
  p {
    text-align: center;
    font-family: 'Muli', sans-serif;
    font-weight: normal;
  }