:root {
  --bg: #ffffff;
  --text: #1a1a1a;
  --muted: #666666;
  --accent: #1e7cc7;
  --accent-hover: #1766a3;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.accent {
  height: 3px;
  background: var(--accent);
}

main {
  min-height: calc(100% - 3px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem 4rem;
  text-align: center;
}

.logo {
  display: block;
  width: min(100%, 26rem);
  height: auto;
}

.services {
  margin: 1.75rem 0 0;
  max-width: 28rem;
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.6;
}

.email {
  margin-top: 2rem;
  color: var(--accent);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.email:hover,
.email:focus-visible {
  color: var(--accent-hover);
  border-bottom-color: currentColor;
}

.email:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

@media (max-width: 40rem) {
  .services {
    letter-spacing: 0.04em;
  }
}
