body {
  font-family: 'Georgia', serif;
  padding-bottom: 72px;
  margin: 0;
  background-color: #f5f5f5;
}

nav {
  background-color: #333;
  overflow: hidden;
  padding: 15px 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

nav a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
  font-size: 17px;
  transition: background-color 0.3s, color 0.3s;
}

nav a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  margin-top: 45px;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: flex;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: flex;
}

.dropdown:hover .dropbtn {
  background-color: #ddd;
  color: black;
}

.column{
  width: 100%;
  display: block;
  flex: 1;
}

.subT{
  font-size: 10px;
}

.CamMap{
  background: rgba(255, 255, 255, 0.5);
}

.map-container {
  background-image: url("https://images.pexels.com/photos/3217663/pexels-photo-3217663.jpeg?cs=srgb&dl=pexels-vincent-gerbouin-445991-3217663.jpg&fm=jpg");
  padding: 40px 0;
  color: #fff;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 20px;
}

.welcome-text {
  background: rgba(0, 0, 0, 0.5);
  display: inline-block;
  padding: 20px;
  border-radius: 10px;
  font-size: 50px;
}

.welcome-text hr {
  border: 3px solid #ffd149;
  width: 160px;
  margin: 20px auto;
}

.welcome-text p {
  font-size: 24px;
  margin-top: 10px;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
  position: fixed;
  bottom: 0;
  width: 100%;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
}
