:root {
  --background: #fff;
  --center: #e8e8e8;
  --text: #313131;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #111;
    --center: #222;
    --text: #eaeaea;
  }
}

html {
  background-color: var(--background);
  color: var(--text);
  align-items: center;
  display: flex;
  font-family: sans-serif;
  height: 100%;
  justify-content: center;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus,
a:hover {
  color: #1d81b2;
}

nav {
  display: grid;
  grid-template-columns: auto auto;
  margin-left: 10px;
}

ul {
  list-style-type: none;
  font-size: 150%;
}

img {
  border-radius: 7px;
  object-fit: cover;
  width: 18em;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 22.6em;
  width: 44em;
  background-color: var(--center);
  border-radius: 7px;
}

.accent {
    color: #a57562 ;
    padding-right: 10px;
}
