footer {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  min-height: var(--head-foot-height);
  max-height: var(--head-foot-height);

  background-color: var(--main-bg);
  border-top: var(--head-foot-border);
  box-shadow: var(--head-foot-shadow);
  background-image: var(--head-foot-gradient);

  position: fixed;
  bottom: 0;
  left: 0;
}

footer ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;

  width: 100%;
  height: 100%;
}

footer li {
  display: flex;
  align-items: center;
}

footer a {
  height: max-content;
  text-shadow: 1px 1px #000;
}

footer li::after {
  content: "";
  display: block;
  margin-left: 5px;
  height: 10px;
  width: 13px;
  background-image: url(https://upload.wikimedia.org/wikipedia/commons/thumb/9/9c/Flag_of_Denmark.svg/768px-Flag_of_Denmark.svg.png?20230220190747);
  background-size: cover;
  box-shadow: 1px 1px #000;
}
