.footer1,
.footer2 {
  width: 100%;
}
.footer1 {
  background: #d99900;
  color: blue;
  padding: 1em;
  font-weight: 700;
  margin-top: 30px;
}
.footer2 {
  background: #333;
  display: flex;
  font-size: 1.5em;
  justify-content: center;
  column-gap: 10px;
  padding: 0.25em;
  color: white;
}
.footer1 .pages {
  display: flex;
  text-transform: uppercase;
  gap: 20px;
  justify-content: center;
}
.footer1 .pages .page {
  line-height: 1.1em;
}
.footer1 .pages .page span {
  cursor: pointer;
}
.footer1 .name {
  text-align: center;
  font-size: 1.5rem;
  display: flex;
  column-gap: 10px;
  justify-content: center;
  align-items: center;
}
.footer1 .name i {
  cursor: pointer;
  /* padding: 5px; */
  border-radius: 5px;
  aspect-ratio: 1/1;
  width: 1.3em;
  display: grid;
  place-items: center;
  text-align: center;
}
@media (width < 1225px) {
  .footer1 .pages {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .footer1 .pages .page {
    text-align: center;
    text-underline-offset: 2px;
    text-decoration: underline 0.5px;
  }
}
@media (width < 370px) {
  .footer1 .pages {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
  }
}
.footer2 > div > .GWDEL {
  display: none;
}
.GOAT {
  background-image: conic-gradient(from 100deg, skyblue, yellow);
  color: transparent;
  -webkit-text-fill: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}
.footer2 .active .GOAT {
  display: none;
}
.footer2 .active .GWDEL {
  display: block;
}
.footer2 > div {
  display: flex;
  column-gap: 5px;
}
