:root {
  --color-gold: #cf9300;
  --color-dark-gold: #ffd700;
  --color-light-gold: #f2da93;
  --font-h1: 3rem;
  --background: #0e0e0e;
}

ul {
  padding: unset;
}

a,
a:hover,
a:visited {
  color: inherit;
  text-decoration: none;
}

body {
  background: var(--background);
  color: var(--color-gold);
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}

header {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  font-family: Hack;
  max-width: 60vw;
  margin: auto;
  margin-top: 20vh;
}


.logo {
  text-transform: lowercase;
  font-size: var(--font-h1);
  letter-spacing: 0.75rem;
}

.subtitle {
  text-transform: lowercase;
  font-style: italic;
  margin-top: 2vh;

}

.services {
  margin-top: 3vh;
  list-style: none;
  display: flex;
  flex-flow: column wrap;
  text-transform: uppercase;
  text-align: center;
}

.services>* {
  margin-top: 1vh;
  margin-bottom: 1vh;
  letter-spacing: 0.3rem;
}

/* .navigation {
  margin-top: 2vh;
  display: flex;
  flex-flow: row wrap;
  text-transform: lowercase;
  justify-content: space-evenly;
  border: 0.1rem solid var(--color-gold);
}

*/

.navigation>a {
  font-size: 1.25rem;
  margin: 0rem;
  padding: 1rem 2rem;
}


.navigation {
  margin-top: 2vh;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-transform: lowercase;
  border: 0.1rem solid var(--color-gold);
  text-align: center;
}

.navigation>a:hover {
  background: var(--color-gold);
  color: var(--background);
}

.content {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  margin-top: 5vh;
  max-width: 40vw;
  text-align: center;
  font-family: Hack;
}
