html {
  font-family: Times New Roman;
}

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

body {
  padding-block: 2rem 6rem;
}

nav {
  display: flex;
  margin-inline: min(4vw, 5rem);
  margin-block: 0 3rem;
  gap: min(3rem, 5vw);
}
nav > a {
  font-size: min(1.6rem, 4vw);
  color: #444;
  text-decoration: none;
  position: relative;
}
nav > a:hover, nav > a:focus, nav > a:active {
  color: #666;
}
nav > a:hover::after, nav > a:focus::after, nav > a:active::after {
  width: 100%;
  left: 0;
}
nav > a:active {
  color: #888;
}
nav > a:active::after {
  color: #888;
}
nav > a::after {
  content: "";
  position: absolute;
  height: 0.1rem;
  bottom: -0.3rem;
  background-color: #666;
  border-radius: 0.5rem;
  transition: width 300ms ease, left 300ms ease;
  width: 0;
  left: 50%;
}

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