body {
  margin: 0;
  background: #47085e;
  font-family: "Host Grotesk", sans-serif;
  color: #ffffff;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  box-sizing: border-box;
}

.logo {
  width: min(100%, 420px);
  height: auto;
  margin-bottom: 96px;
}

.bottom {
  max-width: 420px;
  text-align: center;
  margin-top: -12px;
}

h1 {
  margin: 0 0 24px;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 300;
  color: #ffffff;
}

p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
}

.email {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
}

.email:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .page {
    padding: 32px 24px;
  }

  .logo {
    width: min(100%, 280px);
    margin-bottom: 72px;
  }

  .bottom {
    max-width: 320px;
    margin-top: -8px;
  }

  h1 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  p,
  .email {
    font-size: 15px;
  }
}