@import url("https://fonts.googleapis.com/css2?family=Inter&family=Open+Sans:wght@400;700&family=Raleway:wght@400;700&family=Righteous&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

html,
body {
  height: 100%;
  width: 100%;
  background: #000;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 300;
}

* {
  margin: 0;
  padding: 0;
}

section {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 536px;
  margin: auto;
  position: relative;
}

.logo {
  background: url("/logo.png") no-repeat;
  width: 360px;
  height: 210px;
  background-size: 100%;
  margin-bottom: 35px;
  opacity: 0;
  animation: slideUp 1s cubic-bezier(0.19, 1, 0.3, 1) 1.3s forwards;
}

.subtitle {
  margin-top: 25px;
  color: #bdb3cb;
  font-size: 17px;
  text-align: center;
  letter-spacing: 0.5;
  opacity: 0;
  animation: slideUp 1s cubic-bezier(0.19, 1, 0.3, 1) 0.5s forwards;
}

a {
  color: inherit;
  text-decoration: underline;
}

p {
  margin: 0.83rem 0;
}

@keyframes slideUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  50% {
    opacity: 0.2%;
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
