aside p {
  margin: 4px auto;
}

aside label {
  display: block;
  margin: 0 auto 16px auto;
  border-radius: 8px;
  font: 2.4rem "SomethingInTheWay";
  text-align: center;
  color: var(--accent);
}

aside {
  padding-block: 16px;
}

section article {
  display: none;
}

section article > * {
  margin-bottom: 4px;
}

section article > * * {
  margin-bottom: 0;
}

.my-button {
  margin: 0 auto 4px auto;
  filter: hue-rotate(var(--hue-rotation));
}

.title:not(:first-of-type) {
  margin-top: 16px;
}

.title::before {
  content: "• ";
}

.link-button {
  display: flex;
  align-items: center;
  gap: 8px;
}

.link-button span {
  flex: 1;
}

#global {
  text-align: center;
}

.button-wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.button-wall img {
  display: block;
}

main:has(#local-btn:checked) #local,
main:has(#nacional-btn:checked) #nacional,
main:has(#global-btn:checked) #global {
  display: block;
}

@media (max-width: 768px) {
  aside {
    order: 2;
  }
}