* {
  box-sizing: border-box;
}

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

body {
  background: #ffffff;
  color: #333333;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 24px;
}

.content {
  width: min(720px, 100%);
  text-align: center;
}

.logo {
  display: block;
  width: min(520px, 88vw);
  height: auto;
  margin: 0 auto 54px;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.contact a {
  color: inherit;
  text-decoration: none;
  transition: opacity 160ms ease;
}

.contact a:hover,
.contact a:focus-visible {
  opacity: 0.55;
}

@media (max-width: 600px) {
  .page {
    padding: 36px 20px;
  }

  .logo {
    width: min(430px, 92vw);
    margin-bottom: 42px;
  }

  .contact {
    font-size: 14px;
  }
}
