* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  color: black;
  background-color: white;
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  gap: 0.5rem;
  border-bottom: solid 1px #aaa;
  background-color: #eee;
}

nav a {
  display: inline-block;
  min-width: 9rem;
  padding: 0.5rem;
  border-radius: 0.2rem;
  border: solid 1px #aaa;
  text-align: center;
  text-decoration: none;
  color: #555;
}

nav a[aria-current='page'] {
  color: #000;
  background-color: #d4d4d4;
}

main {
  padding: 1rem;
}

h1 {
  font-weight: bold;
  font-size: 1.5rem;
}

.title{
  font-family:'Cinzel', serif;
  font-weight:700;
  letter-spacing:.06em;          /* dá aquele respiro bonito em caixa-alta */
  font-size:clamp(40px,8vw,72px);
  line-height:1.05;
  margin:4px 0 6px;
  opacity:0; transform:translateY(10px) scale(.98);
  animation:titleIn .9s ease .2s forwards;
  text-shadow:0 2px 10px rgba(0,0,0,.18); /* bem sutil pra destacar no degradê */
}
