body {
    background: #ffffff;
    font-family: 'Metropolis-Regular';
    height: 100vh;
    display: table;
    margin: 0 auto;
}
body > * {
    display: table-cell;
    vertical-align: middle;
}
h1{
    color: #3b7ef6 !important;
	animation: fadeInUpp 0.7s ease-out forwards;
	opacity: 0;
	font-size: 2.5em;
}

@keyframes fadeInUpp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 4px, 0);
    transform: translate3d(0, 4px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
