:root {
  --light-beige: #f8f5ec;
  --medium-beige: #ece8dd;
  --almost-black: #0b121a;
  --light-gray: #cdd1d8;
  --dark-gray: #4d5660;
  --yellow: #f0c543;
  --almost-white: #f7f5ee;
  --real-white: #ffffff;
  --dark-green: #18633a;
  --red: #e7000b;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*:focus {
  outline: none;
}

a {
  color: var(--dark-gray);
  display: inline-block;
  text-decoration: none;
}

a, button {
  &:hover {
    translate: 0 -0.1rem;
  }
}

a.button, button {
  svg {
    height: 1rem;
    width: 1rem;
  }
}

a.logo {
  font-family: serif;
  font-size: 1.5rem;

  span.runner {
    font-style: italic;
  }
}

button {
  align-items: center;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: inherit;
  justify-content: space-between;
  line-height: 2rem;
  outline: none;
}

html {
  font-size: 16px;
}

nav {
  display: flex;
  gap: 2rem;
}

svg {
  height: 1.5rem;
  width: 1.5rem;
}

.hidden {
  display: none;
}
