/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
  padding: 20px;
}

.entry-post {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

h1, h2, h3 {
  margin-bottom: 15px;
  color: #2c3e50;
}

h1 {
  font-size: 2em;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
  margin-top: 0;
}

h2 {
  font-size: 1.5em;
  margin-top: 30px;
}

h3 {
  font-size: 1.2em;
  margin-top: 20px;
}

p {
  margin-bottom: 15px;
}

a {
  color: #007acc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Image Styling */
.entry-post img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 6px;
}

/* Responsive Text */
@media (max-width: 600px) {
  body {
    padding: 10px;
  }

  .entry-post {
    padding: 20px;
  }

  h1 {
    font-size: 1.6em;
  }

  h2 {
    font-size: 1.3em;
  }

  h3 {
    font-size: 1.1em;
  }
}
