/* stylesai.css */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background-color: #e74c3c;
  color: white;
  text-align: center;
  padding: 1rem 0;
}

h1 {
  margin: 0;
  font-size: 2rem;
}

main {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.blog-post {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.blog-post h2 {
  font-size: 1.5rem;
  margin-top: 0;
}

.author {
  color: #888;
  margin-top: 0;
}

.date {
  color: #888;
  margin-top: 0;
  font-style: italic;
}

.content {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 20px;
}

img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 5px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

footer {
  background-color: #e74c3c;
  color: white;
  text-align: center;
  padding: 1rem 0;
}

/* Add a margin-top to push the footer to the bottom of the content */
.main-content {
  margin-bottom: 4rem; /* Adjust this value as needed */
}