/* 1. Body: Sets general page fonts and background */

img {
  align: center;
}


body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
  margin: 0;
  padding: 20px;
  text-align: center;
  	
}

/* 2. Headings: Styles the main titles */
h1 {
  color: #2c3e50;
  text-align: center;
}

/* 3. Links: Styles how hyperlinks appear */
a {
  color: #3498db;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* 4. Classes: Custom styles for specific elements */
.container {
  max-width: 800px;
  margin: auto;
  background: white;
  padding: 20px;
  border-radius: 8px;
}