/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
  padding: 20px;
}

/* Header styles */
header {
  background-color: #FFFFFF;
  color: #000;
  padding: 20px 0;
  text-align: center;
}

header h1 {
  margin-bottom: 10px;
}

header img {
  max-width: 375px;
  max-height: 210px;
  width: auto;
  height: auto;
  display: inline-block;
}

/* Navigation styles */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Main content */
main {
  padding: 20px;
  background-color: #fff;
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

main h2 {
  text-align: center;
}

main a {
  text-decoration: none;
  color: #0066cc; /* optional: sets link color */
}

main a:hover {
  text-decoration: underline;
}

/* Footer styles */
footer {
  text-align: center;
  padding: 15px;
  margin-top: 40px;
  font-size: 0.9em;
  color: #939598;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
