html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  background: #ffffff;
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

.container {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  box-sizing: border-box;
}


.logo {
  max-width: 420px;
  width: 80%;
  height: auto;
}

@media (max-width: 768px) {
  .logo {
    width: 64%;
  }
}

.email {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #000;
}
