footer {
  width: 100%;
  height: 100%;
  padding: 2rem;
  gap: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

footer::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: rgb(0,0,0);
background: linear-gradient(360deg, rgba(0,0,0,0.4990371148459384) 25%, rgba(0,0,0,0) 75%);
}

footer div.line {
  display: flex;
  width: 100%;
  height: 1px;
  text-decoration: line-through;
  background-color: #00000050;
}

footer p {
  width: 33%;
  color: #c4c4c4;
  text-align: center;
  margin: 0;
}

footer a {
  color: #ffffff50;
  text-decoration: underline;
  transition: 0.7s ease-in-out;
}

footer a:hover {
  color: #ffffff;
}
