* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

footer {
  height: 300px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  opacity: 1;
  transition: 3s;
}
footer > div > ul {
  list-style-type: none;
}

footer > div {
  width: 300px;
  height: fit-content;
}
footer .social-media {
  display: flex;
  gap: 10px;
}
.social-media > a {
  width: 50px;
  height: 50px;
  background-color: blue;
  border-radius: 50%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
}
.instagram {
  background: linear-gradient(to right bottom, #ffd573, #e43895);
}
.linkedin {
  background-color: rgb(0, 126, 186) !important;
}
.whatsapp {
  background-color: #25d367 !important;
}
.youtube {
  background-color: #fe0002 !important;
}
@media screen and (max-width: 480px) {
  footer {
    display: flex;
    flex-direction: column;
    height: fit-content;
    padding: 20px;
  }
}
