*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  background: #fff;
  color: #000;
  font-family: "Times New Roman", Times, "Liberation Serif", serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100%;
  display: flex;
  justify-content: center;
  padding: 8vh 1.5rem 3rem;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 100%;
}

.logo {
  display: block;
  width: min(100%, 900px);
  height: auto;
}

.contact {
  margin: 2.25rem 0 0;
  padding: 0;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  gap: 0.15em;
}

.contact a {
  color: inherit;
  text-decoration: none;
}

.contact a:hover,
.contact a:focus-visible {
  text-decoration: underline;
}
