@charset "utf-8";
/* CSS Document */

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f9;
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

/* Header Styling */
header {
  background: #4CAF50;
  color: white;
  padding: 10px 20px;
  text-align: center;
  border-radius: 5px;
}

h2 {
  background: #4CAF50;
  color: white;
  padding: 12px 20px;
  text-align: center;
  border-radius: 5px;
}


/* Navigation Bar */
nav {
  margin: 20px 0;
  text-align: center;
}

nav a {
  color: #4CAF50;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Main Content */
main {
  background: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Footer Styling */
footer {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9em;
  color: #666;
}
