.grid-container {
  display: grid;
  place-items: center;
}

body {
  padding: 0;
  margin: 0;
}

header {
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.nav-container {
  display: grid;
  place-items: center;
  width: 70%;
}

nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
  height: 60px;
}

nav .site-name {
  font-family: "ZCOOL KuaiLe";
  font-size: 2rem;
  text-shadow: 0px 4px 2px rgba(0, 0, 0, 0.16);
}

.logo img {
  width: 45px;
}

@media only screen and (max-width: 768px) {
  .nav-container {
    width: 100%;
  }
}
