:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1a1a1a;
  background: #ffffff;
}

.contact-card {
  width: 100%;
  max-width: 34rem;
  text-align: center;
}

.logo {
  display: block;
  width: min(100%, 22rem);
  height: auto;
  margin: 0 auto 1.5rem;
}

address {
  font-style: normal;
  line-height: 1.6;
}

address p {
  margin: 0 0 1rem;
}

address p:last-child {
  margin-bottom: 0;
}

address span {
  display: block;
}

a {
  color: #0a58b5;
}

a:hover {
  color: #08418a;
}

a:focus-visible {
  outline: 2px solid #0a58b5;
  outline-offset: 3px;
}

