@import url("https://fonts.googleapis.com/css2?family=Martel+Sans:wght@200;300;400;600;700;800;900&display=swap");
body {
  background-color: #FFEEEE;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}
body header p {
  font-size: 0.5rem;
  margin-block: 0;
  position: fixed;
  top: 5px;
  opacity: 0.5;
}
body nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem;
}
body nav a {
  color: black;
  text-decoration: none;
  font-family: "Martel Sans", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 1rem;
  transition: all 0.2s ease-in-out;
}
body nav a.underline {
  text-decoration: underline;
}
body nav a:hover:not(.underline) {
  text-decoration: underline;
}
body nav a:hover.underline {
  text-decoration: none;
}

/*# sourceMappingURL=globals.css.map */
