/* Make the website cooler with gradients, shadows, and a modern design */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #71b7e6, #9b59b6);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 30px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.container:hover {
  transform: scale(1.02);
}

h1 {
  color: #333;
  font-size: 2rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

p {
  font-size: 1.1rem;
  margin: 10px 0;
  color: #444;
}

span {
  font-weight: bold;
  color: #3498db;
}

/* Style for map */
#map {
  width: 100%;
  height: 400px;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Add a cool hover effect to the info-container */
.info-container p {
  transition: transform 0.2s ease-in-out;
}

.info-container p:hover {
  transform: scale(1.05);
}

/* Responsive design */
@media (max-width: 600px) {
  h1 {
      font-size: 1.5rem;
  }

  p {
      font-size: 1rem;
  }

  #map {
      height: 300px;
  }
}
