.footer {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  background-color: #0e3c7c;
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: white;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 80%;
  align-items: center;
}

.footer-container .footer-link {
  display: flex;
  border: 2px solid white;
  border-radius: 9999%;
  width: 24px;
  height: 24px;
  padding: 23px;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease-in-out;
}

.footer-container a img {
  width: 24px;
  height: 24px;
}

.footer-container .footer-link:hover {
  background-color: rgb(24, 182, 58);
}

.footer-link {
  text-decoration: none;
}
