.site-nav {
  background-color: #000000bf;
  color: white;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 0 auto;
  justify-content: center;
  justify-items: center;
  padding: 0.25rem;
  text-align: center;
}

.site-nav li {
  list-style: none;
}

#name {
  color: white;
  font-family: "Bagel Fat One", system-ui;
  text-transform: uppercase;
  font-size: x-large;
}

a {
  font-family: "Bagel Fat One", system-ui;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
}

a:hover {
  color: #c96508;
}

@media (width >=650px) {
  .site-nav {
    grid-template-columns: 1fr auto;
    align-items: center;
    text-align: left;
  }

  #name {
    justify-content: start;
    text-align: left;
  }

  ul {
    display: grid;
    grid-auto-flow: column;
    padding: 1rem;
    gap: 0.5rem;
  }
}
