* {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  background-color: black;

}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 100%;
}

main img {
  display: block;
  margin: 0 auto;
  width: 500px;
  max-width: 100%;
}

ul, ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul {
  margin: 0 auto;
  padding: 0 4px;
  max-width: 400px;
  width: 100%;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

footer ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #000;
  border-radius: 100%;
  background-color: #fff;
  padding: 12px;
  width: 72px;
  height: 72px;  
  transform: scale(1);
  transition: transform 0.2s;
  cursor: pointer;
}

footer ul li:hover {
  transform: scale(1.1);
  transition: transform 0.2s;
}

footer ul li span {
  font-size: 12px !important;
}

footer ul li .fa {
  font-size: 24px;
  margin-bottom: 4px;
  color: #000;
}

footer ul a {
  text-decoration: none;
}

footer ul li img {
  width: 100%;
  margin: auto auto;
  display: block;
}

footer ul li .fa.img {
  margin: auto auto !important;
  display: block;
}