body {
  width: 90%;
  max-width: 940px;
  margin: 0 auto;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.welcome-container {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}
h1 {
  color: #333;
  margin-bottom: 20px;
  font-size: 2.5em;
}
p {
  color: #666;
  font-size: 1.2em;
  line-height: 1.6;
}
.date {
  color: #999;
  font-size: 0.9em;
  margin-top: 20px;
}

#content ul {
  list-style: none;
}

#content li {
  color: #666;
  font-size: 1.2em;
  line-height: 1.6;
}

/* Navigation Styles */
nav {
  margin-bottom: 30px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

nav li {
  margin-right: 20px;
}

nav li:last-child {
  margin-right: 0;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

nav a:hover {
  background-color: #e0e0e0;
}

/* Latest Posts Section */
.latest-posts {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 600px;
  margin-top: 20px;
}

.latest-posts h2 {
  color: #333;
  margin-bottom: 20px;
  font-size: 1.5em;
}

.latest-posts h3 {
  color: #333;
  margin-bottom: 15px;
  font-size: 1.2em;
}

.latest-posts article {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.latest-posts article:last-child {
  border-bottom: none;
}

.blogpost {
  background-color: white;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin: 20px auto;
}

/* Image styling for responsiveness */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}
