
body {
  margin: 0;
  font-family: 'Crimson Text', serif;
  background-color: white;
  color: #333;
  line-height: 1.6;
  text-align: center;
}

h1, h2, h3,h4  {
  margin-bottom: 0.5em;
}

p {
  margin-bottom: 1em;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

img, video {
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin-bottom: 1.5em;
}

main{
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
/*main {
  padding: 2em 1em;
}

/* === NAVBAR === */
nav {
  background-color: #215e21; 
  padding: 1em 0;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav h1 {
  margin: 0;
  color: #fff;
  font-size: 2em;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0.5em 0 0 0;
  display: flex;
  justify-content: center;
  gap: 2em;
}

nav ul li a {
  text-decoration: none;
  color: #f5f1e3;
  font-size: 1.1em;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #cbe6b6; 
}

/* === BOTONES GENERALES === */
button, .btn {
  background-color: #215e21;
  color: #fff;
  border: none;
  padding: 0.5em 1em;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s;
}

button:hover, .btn:hover {
  background-color: #183f18;
}

/* === FOOTER === */
footer {
  background-color: #215e21;
  color: #fff;
  padding: 1em 0;
  margin-top: 3em;
}

footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 0.5em;
}

footer a:hover {
  color: #cbe6b6;
}


form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

label {
  display: block;
  margin-bottom: 0.5em;
  font-weight: bold;
}

input, select, textarea {
  width: 100%;
  padding: 0.5em;
  margin-bottom: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
}


@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 1em;
  }

  nav h1 {
    font-size: 1.5em;
  }
}
header a {
  color: black;
  text-decoration: none;
}

header a:hover {
  color: black; 
}
.map-container {
  display: flex;
  justify-content: center;
  margin-top: 1em;
}

table {
 border-collapse: collapse;
 width: 100%;
}
th, td {
 border: 1px solid black;

 padding: 8px;
 text-align: left;
}
th {
 background-color: #f2f2f2;
}
