/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap');

body {
  font-family: 'Noto Serif JP', serif;
  line-height: 1.8;
  color: #4d4d4d;
  background-color: #f5f0e3;
  background-image: url('washi-paper.jpg');
  background-repeat: repeat;
}

nav {
  background-color: #b08968;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: scroll;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 20px;
  transition: color 0.3s ease-in-out;
  font-weight: bold;
}

nav a:hover {
  color: #4d4d4d;
}

nav ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  max-width: 800px;
  margin: 40px auto;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #b08968;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h1, h2 {
  font-family: 'Noto Serif JP', serif;
  position: relative;
  padding-bottom: 10px;
  text-align: center;
}

h1::after, h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 50px;
  border-bottom: 2px double #b08968;
}

p {
  margin-bottom: 20px;
  text-align: justify;
  text-indent: 1em;
}

a {
  color: #b08968;
  text-decoration: underline dotted;
  transition: color 0.3s ease-in-out;
}

a:hover {
  color: #4d4d4d;
}

footer {
  background-color: #b08968;
  color: #fff;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  position: relative;
  bottom: 0;
}