section.blog-page {
  max-width: 1200px;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
section.blog-page h1 {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  padding: 25px 0;
  border-bottom: 2px solid #007BFF;
}
section.blog-page div.img.thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 10px;
}
section.blog-page div.img.thumbnail img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}
section.blog-page div.blog-header {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  padding: 20px 0;
}
section.blog-page div.blog-header p {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 1px;
}
section.blog-page div.blog-content * {
  display: inline-block;
  padding: 10px 0;
}
section.blog-page div.blog-content .prettyprint {
  width: 100%;
  white-space: pre;
  overflow-x: auto;
  font-size: 1.2rem;
}
section.blog-page div.blog-content .prettyprint * {
  display: initial;
}
section.blog-page div.blog-content h2 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 30px;
  padding: 10px;
  background: #f5f5f5;
  border-left: 5px solid #007BFF;
}
section.blog-page div.blog-content h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 25px;
  padding: 5px;
  border-left: 3px solid #007BFF;
}
section.blog-page div.blog-content p {
  margin-top: 30px;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.5px;
  text-indent: 1em;
}
section.blog-page div.blog-content a {
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.5px;
  color: #007BFF;
  text-decoration: none;
}
section.blog-page div.blog-content a:hover {
  color: #FF6347;
  text-decoration: underline;
}
section.blog-page div.pagination ul {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
}
section.blog-page div.pagination li {
  list-style: none;
}
section.blog-page div.pagination li a {
  display: block;
  border: solid 1px #000;
  padding: 10px 25px;
  border-radius: 5px;
  transition: all 0.3s ease;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}
section.blog-page div.pagination li a:hover {
  background-color: #000;
  color: #fff;
  box-shadow: none;
}/*# sourceMappingURL=blog-page.css.map */