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

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #222;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

header h1 {
  font-size: 2rem;
}

header p {
  font-size: 1.1rem;
  margin-top: 10px;
}

/* Main content */
.content {
  max-width: 800px;
  margin: 30px auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
}

/* Section titles */
h2 {
  margin-bottom: 15px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 5px;
}

/* News items */
.news-item {
  margin-bottom: 20px;
}

.news-item h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.news-item time {
  font-size: 0.9rem;
  color: #666;
  display: block;
  margin-bottom: 5px;
}

/* Social links */
.social-links {
  text-align: center;
  margin-top: 20px;
}

.social-links a {
  margin: 0 10px;
  text-decoration: none;
  color: #0055aa;
  font-weight: bold;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  font-size: 0.9rem;
  color: #555;
}

