:root {
  color-scheme: dark;
  font-family:
	Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
	sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  background: #000;
  color: #fff;
}

.site-main {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.hero {
  width: min(100%, 460px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

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

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 52px;
  padding: 14px 26px;

  border: 2px solid #fff;
  border-radius: 6px;

  color: #fff;
  background: transparent;

  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;

  transition:
	background 160ms ease,
	color 160ms ease,
	transform 160ms ease;
}

.contact-button:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

.contact-button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 5px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}