/* General body styling */
body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  margin: 20px;
  padding: 0;
  color: #333;
}

/* Navigation bar */
nav {
  background-color: #004080;
  padding: 10px;
  border-radius: 5px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 15px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Headings */
h1, h2 {
  color: #004080;
}

/* Tables */
table {
  border-collapse: collapse;
  margin-top: 10px;
  width: 60%;
}

th, td {
  padding: 8px;
  text-align: left;
}

/* Form */
form input, form textarea, form button {
  width: 300px;
  padding: 8px;
  margin-top: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

form button {
  background-color: #004080;
  color: white;
  border: none;
  cursor: pointer;
}

form button:hover {
  background-color: #0066cc;
}

/* Footer */
footer {
  margin-top: 20px;
  font-size: 0.8em;
  text-align: center;
  color: #666;
}
img {
  width: 200px;
  border-radius: 50%;
  animation: bounce 3s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
nav a {
  color: white;
  text-decoration: none;
  transition: color 0.5s ease;
}

nav a:hover {
  color: yellow;
}
body {
  background: linear-gradient(-45deg, #ff9a9e, #fad0c4, #fad390, #6a82fb);
  background-size: 400% 400%;
  animation: gradientBG 10s ease infinite;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.map-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  padding-bottom: 56.25%; /* 16:9 ratio */
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
