body {
  background: #fff url(./../img/bg.jpg) no-repeat center top;
  background-size: contain;
  min-height: 100vh;
  font-family: "New Amsterdam", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.container .logo {
  margin-block-end: 3rem;
  animation: slide-down 1s forwards;
}

.container .logo img {
  width: 18rem;
}

.container .links {
  animation: slide-up 1s forwards;
}

.container .links a {
  text-decoration: none;
  color: #090b30;
  font-size: 1.5rem;
}

.container .links a + a::before {
  content: '';
  border-left: solid .15rem #090b30;
  padding-inline-start: .5rem;
  margin-inline-start: .5rem;
}

@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
