body, html {
  margin: 0;
  padding: 0;
  overflow: hidden; /* Ensures the canvas fills the screen without scroll */
}
img {
    max-width: 100%; /* Makes the image responsive */
    height: auto; /* Maintains aspect ratio */
    border: 0 solid #555; /* Adds a border around the image */
}

#blog-container {
  position: absolute;
  top: 50px; /* Adjust based on your header */
  left: 50px;
  right: 50px;
  bottom: 50px;
  background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white for readability */
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto; /* Allows scrolling within the content div */
  direction: rtl;
  text-align: right;
}

h1, h2, p {
  color: #333; /* Dark text for readability */
  direction: rtl;
  text-align: center;
}
