body {
    background: #00091B;
    color: #fff;
  }
  
  
  @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: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    animation: fadeIn 1000ms ease;
    -webkit-animation: fadeIn 1000ms ease;
    align-items: center;
    text-align: center;
    
  }
  
  h1 {
    font-size: 40px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0;
    line-height: 1;
    font-weight: 200;
  }
  
  .dot {
    color: #4FEBFE;
  }
  
  p {
    text-align: center;
    margin: 18px;
    font-family: 'Muli', sans-serif;
    font-weight: normal;
    
  }
  
  .icons {
    text-align: center;
    
  }
  
  .icons i {
    color: #ffffff;
    background: #fff;
    height: 15px;
    width: 15px;
    padding: 13px;
    margin: 0 10px;
    border-radius: 50px;
    border: 2px solid #fff;
    transition: all 200ms ease;
    text-decoration: none;
    position: relative;
  }

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) { 
    h1 {
      font-size: 20px;
    }
    img {
      width: 300px;
      filter: invert(1) brightness(1000);
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) { 
    h1 {
      font-size: 25px;
    }
    img {
      width: 350px;
      filter: invert(1) brightness(1000);
    }
  }

  /* Medium devices (tablets, 768px and up) */
  @media (min-width: 768px) { 
    h1 {
      font-size: 30px;
    }
    img {
      width: 400px;
      filter: invert(1) brightness(1000);
    }
  }

  /* Large devices (desktops, 992px and up) */
  @media (min-width: 992px) {
    h1 {
      font-size: 30px;
    }
    img {
      width: 450px;
      filter: invert(1) brightness(1000);
  }}
  

  /* Extra large devices (large desktops, 1200px and up) */
  @media (min-width: 1200px) { 
    h1 {
      font-size: 30px;
    }
    img {
      width: 450px;}
  }


  
  /* Disable grayscale on hover */
  img:hover {
    -webkit-filter: grayscale(0);
    filter: none;
  }
  
  .icons i:hover, .icons i:active {
    color: #fff;
    background: none;
    cursor: pointer !important;
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    text-decoration: none;
    
  }


 .footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-family: 'Muli', sans-serif;
    font-weight: normal;
    padding: 10px;
    font-family: 'Muli', sans-serif;
    font-size: 14px;
    color: #4FEBFE;
 }

    