
footer {
  font-family: "Euclid Circular A", "Poppins";
  color: #fff;
  position: relative;
  left: 0;
  bottom: 12px;
  display: flex;
  width: 100%;
  height: 370px;
  overflow: hidden;
  text-align: center;
}

footer .background {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

footer ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .socials {
  gap: 20px;
  justify-content: center;
}

footer .socials a {
  font-size: 36px;
  color: inherit;       
  text-decoration: none;
}
footer .socials a:hover {       
  transform: scale(1.5); 
}

footer .links {
  gap: 10px;
}

footer .legal {
  font-size: 15px;
  font-size-adjust: 0.5;  
  margin: 0;
}
footer .eu-text {
  max-width: 1400px;               
  padding-inline: clamp(16px, 5vw, 60px);
  text-align: center;   
  line-height: 1.4;
  font-size: 15px;
  font-size-adjust: 0.5;  
}

footer svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleY(3.2) scaleX(4);
  transform-origin: bottom;
  box-sizing: border-box;
  display: block;
  pointer-events: none;
}

footer section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 30px;
  padding-bottom: 20px;
  margin:0 auto;
  width: 100%;
}

@media (width > 420px) {
  footer section {
    align-items: center;
    gap: 20px;
  }

  footer .links {
    gap: 20px;
  }
}