:root {
  color: #11110f;
  background: #f2f1ec;
  font-family: "Raleway", Helvetica, Arial, system-ui, sans-serif;
  font-size: 14px;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  background: inherit;
}

.site {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 36px 30px;
}

h1,
p {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}

.identity {
  display: grid;
  grid-template-columns: 150px auto;
  align-items: end;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

a {
  color: inherit;
  line-height: 1.4;
  text-decoration: none;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

a:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 4px;
}

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

  .identity {
    grid-template-columns: minmax(96px, 32vw) auto;
  }
}
