html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

h3 {
    text-decoration: underline;
}

.footer-images {
    display: flex;
    gap: 12px; /* Space between icons */
}

.footer-images img {
    height: 40px; /* Smaller size (adjust as needed) */
    width: auto; /* Maintains aspect ratio */
    transition: transform 0.2s; /* Optional: Adds hover effect */
}

.footer-images img:hover {
    transform: scale(1.1); /* Optional: Slight zoom on hover */
}