@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap");

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #121212;
  color: #ffffff;
  font-family: "Inter", sans-serif;
}

.page {
  min-height: 100vh;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logo {
  width: 160px;
  height: 235px;
  object-fit: contain;
  margin-bottom: 56px;
}

.text {
  font-size: 12px;
  line-height: 1.45;
  font-weight: 400;
}

.text p {
  margin: 0;
}

.date {
  margin-top: 48px;
  font-size: 12px;
  font-weight: 400;
}

@media (max-width: 480px) {
  .page {
    padding: 40px 20px;
  }

  .text,
  .date {
    font-size: 12px;
  }
}
