.footer-legal {
  display: grid;
  gap: 5px;
  text-align: right;
}

.footer-legal a {
  color: var(--lime);
  font-weight: 700;
  text-decoration: none;
  transition: color .25s, text-shadow .25s;
}

.footer-legal a:hover {
  color: #fff;
  text-shadow: 0 0 14px rgba(185,255,40,.65);
}

@media (max-width: 720px) {
  .footer-legal {
    text-align: left;
    line-height: 1.6;
  }
}
