body {
  background: #43AA8B;
  color: #fff;
  font-family: Poppins, arial;
  font-weight: 200;
}


@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 500ms ease;
  -webkit-animation: fadeIn 500ms ease;
  text-align: center;
  
}

a{
  color: #fff;
}

h1 {
  font-size: 50px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 40px;
  line-height: 1;
  font-weight: 700;
}


@media only screen and (max-width: 600px) {
  h1 img {
    width: 250px;
  }

  a{
    font-size: 14px;
  }
}