html {
  height: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #2c3528;
  color: #fff;
  margin: 0;
  padding: 0;
  min-height: 100%;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

header {
  padding: 2rem 0;
  text-align: center;
}

.logo {
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
}

h1, .charity-message, .header-location, .social-links, .footer-link, hr, h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.market-container {
  max-width: 800px;
  margin: 20px auto;
}

.market-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  width: 100%;
  box-sizing: border-box;
}

.market-name,
.market-location, /* New class for market locations */
.date,
.time {
  padding: 8px;
  text-align: left;
}

/* Adjust the flex values for each market card item */
.market-name { flex: 3; }
.market-location { flex: 2; } /* Updated class for market locations */
.date { flex: 2; }
.time { flex: 1; }

.header-location { /* Separate class for the header location */
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

.charity-message {
  font-size: 1.8rem;
  margin: 0.5rem 0;
}

.highlight {
  background-color: #fff;
  color: #2c3528;
  padding: 0 5px;
}

.social-links, .footer-link {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}

.divider {
  margin: 0 10px;
}

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.footer-link {
  text-align: center;
  display: block;
  margin-top: 1rem;
}

ul {
  list-style-type: none;
  padding: 0;
}

li {
  margin-bottom: 5px;
}
