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

/* Basic styling for the blog layout */

/* Body styling */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Header styling */
header {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 0.625rem;
}

/* Date and time styling */
#current-date-time {
  font-size: 0.875rem;
  color: #888;
  margin-top: 0.3125rem;
}

/* Blog post styling */
.blog-post {
  border: 0.625rem solid #ddd;
  margin-left: 12.5rem;
  margin-right: 12.5rem;
  margin-top: 3.125rem;
  margin-bottom: 1.25rem;
  padding: 1.25rem;
}

/* Blog post title styling */
.blog-post h2 {
  margin-top: 0;
}

/* Blog post subtitle styling */
.blog-post h3 {
  margin-top: 1rem;
  font-size: 1rem;
}

/* Date styling within a post */
.blog-post p.date {
  color: #888;
  margin-top: 0.3125rem;
}

/* Footer styling */
footer {
  text-align: center;
  margin-top: 1.25rem;
  color: #888;
}

/* Mobile view */
@media only screen and (max-width: 600px) {
  /* Adjust styles for smaller screens */
  .blog-post {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
