.footer {
  height: 150px;
  display: flex;
  justify-content: center;
  background-color: #090a0b;
}
.footer .footer-content {
  height: 100%;
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer .footer-content .link-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}
.footer .footer-content .link-container img {
  width: 40px;
}
.footer .footer-content .link-container .java-icon {
  width: 33px;
}
.footer .footer-content .copyright-notice {
  font-size: 14px;
}

@media (max-width: 1199px) {
  .footer .footer-content {
    width: 100%;
  }
}