.icons{
  gap:50px;
}

.footer-color{
  max-width: 100%;
  color:white;
  background-color:black;
}


@keyframes glow {
  0% {
      text-shadow: 0 0 10px #00f, 0 0 20px #00f, 0 0 30px #00f, 0 0 40px #00f, 0 0 50px #00f, 0 0 60px #00f, 0 0 70px #00f, 0 0 80px #00f;
  }
  20% {
      text-shadow: 0 0 20px #00f, 0 0 30px #00f, 0 0 40px #00f, 0 0 50px #00f, 0 0 60px #00f, 0 0 70px #00f, 0 0 80px #00f, 0 0 90px #00f;
  }
}

.footer-name:hover {
  animation: glow 5s infinite;
}

.footer-name{
  color: blue;
}

.map-image {
  max-width: 60%; /* Set the maximum width of the map image */
  height: auto; /* Maintain the aspect ratio */
}

.map-image:hover {
  transform: scale(1.03);
  box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.5);
}

.social-icon {
    margin-right: 15px;
}

.social-icon:hover {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transform: scale(1.5);
}