
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDMincho&family=Quintessential&display=swap');

:root {
  --bg-color: #f1ebe6;
  --fg-color: black;
  --accent-color: #6f2b2b;
}

body {
  font-family: bizudmincho, serif;
  -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
  text-rendering: optimizeSpeed;
  background-color: var(--bg-color);
  background-image: url('bg_image2.png'); /* Replace with your image path */
  background-attachment: fixed;
  background-size: cover;
  font-size: 22px;
  image-rendering: optimizeSpeed;
}

@font-face {
  font-family: "BIZ UDMincho", serif;
  font-weight: 400;
  font-style: normal;
}

main {
  max-width: 800px;
  margin: 0 auto;
}

.hidden {
  margin: 0px;
  padding: 0px;
  width: 0px;
  height: 0px;
  position: absolute;
  display: none;
}

.blog-post {
  font-size: 12px;
  width: 100%;
  border-bottom: 2px dotted black;
  margin-bottom: 20px;
}

.blog-post h3 {
  font-size: 22px;
}

.blog-post a {
  text-decoration: none;
  display: block;
}

.blog-post a:hover {
  background-color: var(--accent-color);
  color: var(--bg-color);
}

.title-container {
  padding-top: 20px;
  width: 100%;
  position: relative;
}

.title-container a:hover {
  background: rgba(0,0,0,0);
}

.title-container img {
  width: 100%;
  border-bottom: 2px solid black;
}

.title-container h1 {
  font-family: "Quintessential", serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  /*position: absolute;*/
  /*bottom: 22px;*/
  /*left: 50%;*/
  /*transform: translateX(-50%);*/
  /*font-size: 100px;*/
}

.desc {
  max-width: 550px;
  margin: 0 auto;
  padding-top: 5px;
  text-align: center;
}

h1, h2, h3, h4, h5, p {
  margin: 0;
  font-weight: normal;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  padding: 10px;
  margin-bottom: 50px;
  margin-top: 20px;
}

.navbar ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.navbar li {
  margin: 0 10px;
}

.navbar li:not(:last-child)::after {
  content: " | ";
  margin-left: 10px;
}

a {
  text-decoration: underline;
  color: var(--accent-color);
}

a:hover {
  background-color: var(--accent-color);
  color: var(--bg-color);
}

.blog-plants {
  display: block;
  margin: 0 auto;
  width: 250px;
  max-width: 62.5%;
}

.img-center {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

iframe {
  display: block;
  padding-bottom: 20px;
  max-width: 100%;
  margin: 0 auto;
}

footer {
  text-align: center;
  font-size: 0.85rem;
  color: #555;
  margin-top: 2rem;
  padding: 1rem 0;
}
