@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400&display=swap');

body {
  height: 100vh;
  position: relative;
  padding: 48px;
  margin: 0px;
  box-sizing: border-box;
  background-color: #000000;
  color: #ffffff;
}

header{
  width: 100%;
  text-align: center;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

.wrapper {
  width: calc(100% - 96px);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  animation: fadeIn 3000ms ease;
}

h1 {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 32px;
  line-height: 48px;
  text-align: center;
}

footer {
  position: absolute;
  left: 0;
  bottom: 48px;
  width: 100%;
  text-align: center;
}

footer a:nth-child(1n+2) {
  margin-left: 20px;
}

@media only screen and (max-width: 63em){
  header img{
    height: 180px;
  }

  h1 {
    font-size: 28px;
    line-height: 42px;
  }
}