
main {
  width: 100%;
}

.genealogicalTitle {
  font-size: 1.6rem;
  /* color: #888; */
  color: rgb(172, 154, 131);
  text-align: center;
  padding: 1rem;
  /* border: 1px solid red; */
}

.genealogicalArticles {
  width: 100%;
  height: auto;
  padding: 1rem;
  /* border: 1px solid blue; */
  margin-inline: auto;

  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  align-content: flex-start;

  background: radial-gradient(rgb(255, 240, 192) 25%, #ffffff 60%);
}

.genealogicalArticles .box {
  width: 450px;
  height: auto;
  padding: 1.5%;
  border: 3px double rgb(237, 189, 45);
  border-radius: 25px;
  background-color: #ddd;
  text-align: center;
}

.genealogicalArticles .hRule {
  border-top: 3px double rgb(237, 179, 45);
}

.title {
  padding-bottom: 0.6rem;
}

.title a {
  font-size: 1.2rem;
  color: #888;
  text-decoration: none;
}

.title a:hover {
  font-size: 1.2rem;
  color: #800;
  text-decoration: none;
}

.box .description {
  font-size: 0.8rem;
  line-height: 1.1rem;
  color: #888;
  text-align: justify;
  padding: 0.5rem;
}

.box .date {
  font-size: 1rem;
  color: #888;
  padding-top: 0.6rem;
  text-align: center;
}