:root {
  color-scheme: dark;
  font-family:
    "IBM Plex Mono", "SFMono-Regular", Consolas, "Liberation Mono", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

body {
  display: grid;
  min-width: 320px;
  min-height: 100svh;
  margin: 0;
  place-items: center;
  background: #000;
  color: #fff;
  font-size: 12px;
  line-height: 1.7;
}

main {
  width: min(420px, calc(100% - 40px));
}

p {
  margin: 0;
  color: #777;
}

.name {
  margin-bottom: 8px;
  color: #fff;
}

.location {
  margin-bottom: 14px;
}

nav {
  display: flex;
  gap: 18px;
  margin-top: 28px;
}

a {
  color: #fff;
  text-decoration: none;
}

.contact {
  display: inline-block;
  margin-top: 14px;
}

a:hover {
  color: #777;
}
