body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #1a1a1a;
  color: white;
  line-height: 1.6;
}

/* Blog Content Container */
.blog-post {
  max-width: 1600px;
  margin: 50px auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Headers */
h1, h2, h3 {
  font-weight: bold;
  text-shadow: 2px 2px 4px black;
}

h1 {
  font-size: 2.5rem;
  text-align: center;
  color: #ffcc00;
  margin-bottom: 10px;
}

.banner-content p {
  text-align: center;
}


h2 {
  font-size: 2rem;
  color: #ffcc00;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 5px;
  margin-top: 30px;
}

h3 {
  font-size: 1.5rem;
  color: #ffcc00;
}

/* Paragraphs */
p {
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 20px;
}

/* Horizontal Rule */
hr {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 30px 0;
}

/* Blockquotes */
blockquote {
  border-left: 5px solid #ffcc00;
  padding: 10px 20px;
  margin: 20px 0;
  background: rgba(255, 255, 255, 0.1);
  font-style: italic;
  color: #ffcc00;
}

/* Links */
a {
  color: #ffcc00;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #ffea70;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-post {
      width: 90%;
      padding: 15px;
  }

  h1 {
      font-size: 2rem;
  }

  h2 {
      font-size: 1.7rem;
  }

  p {
      font-size: 1rem;
  }
}

img {
  max-width: 100%;
  max-height: 80vh;
  height: auto;
  justify-content: center;
  align-items: center;
  align-content: center;
}

figcaption {
  font-size: 1.2rem;
  color: #ddd;
  text-align: center;
}

figure {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center vertically */
  align-items: center; /* Center horizontally */
  margin: 0; /* Remove default margins */
}