* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 
Backgrounds: Soft Beige (#FDF2E9).
Headers: Deep Brown (#8E4B1A) or Charcoal Gray (#2C3E50).
Text: Charcoal Gray (#2C3E50).
Buttons and CTAs: Warm Orange (#F39C12) with hover effects in Golden Yellow (#F1C40F).
Highlights: Earthy Green (#6AA84F) and Vibrant Red (#E74C3C).
*/

body {
  font-family: "Poppins", sans-serif;
  color: #2c3e50;
  background-color: #fdf2e9;
}

h1,
h2,
h3 {
  font-family: "Lora", serif;
  color: #8e4b1a;
}

.logo {
  width: 36px;
  height: auto;
}

.header-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-transform: uppercase;
  padding: 15px 0;
  background-color: #8e4a1a0e;
}

/* copied from chatgpt */
#map {
  height: 100vh;
}

.leaflet-container {
  background-color: #fdf2e9;
}

a:link {
  color: #2c3e50;
  text-decoration: none;
}
