body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
}
header h1 {
  font-family: 'Georgia', serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ffcc00; /* golden yellow for emphasis */
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  margin-bottom: 0.25rem;
}
p {
    text-align: justify;
}
.headertext p {
	text-align:center;
}
header p {
  font-family: 'Arial', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #e6e6e6;
  letter-spacing: 0.05em;
  font-style: italic;
  margin-top: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}
header {
  text-align: center;
  background: #00695c;
  color: white;
  padding: 20px 0;
}
.logo {
  width: 120px;
}
nav {
  background: #004d40;
  display: flex;
  justify-content: center;
  padding: 10px;
}
nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
}
main {
  padding: 20px;
}
section {
  background: white;
  margin: 20px auto;
  max-width: 800px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
footer {
  text-align: center;
  background: #00695c;
  color: white;
  padding: 10px 0;
}
