body,
html {
  font-size: 20px;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif,
    "Gill Sans",
    "Gill Sans MT",
    Calibri,
    "Trebuchet MS",
    sans-serif;
  line-height: 1.2rem;
  margin: 0;
  padding: 0;
}

#topword {
  position: relative;
  padding-top: 60px;
  font-family: "Times New Roman", Times, serif;
  font-size: 0.65rem;
  font-weight: 300;
  text-align: center;
  font-style: italic;
  color: #888888;
}
.emoji-word {
  font-family: "Comic Neue", sans-serif;
  margin: 0 6px;
  font-style: normal;
  font-weight: 800;
}

.notes-main {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  width: 70vw;
  min-width: 960px;
  margin: 0 auto;
  margin-bottom: 100px !important;
  flex-direction: column;
}

.reading-notes-container,
.travel-notes-container,
.life-notes-container {
  margin: 50px 0;
  width: 100%;
}

.notes-mark {
  position: relative;
  font-size: 1rem;
  font-weight: 300;
}

.reading-notes {
  display: inline-flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  margin-top: 1.5rem;
}
.reading-notes-item {
  display: inline-flex;
  width: 30%;
  margin-bottom: 3rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-right: #b9b9b9 1px solid;
  font-size: 0.55rem;
}
.reading-notes-item-main,
.travel-notes-item-main,
.life-notes-item-main {
  border-radius: 3px;
  width: 100%;
  height: 100%;
  padding: 5px 15px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.reading-notes-item-main:hover,
.travel-notes-item-main:hover,
.life-notes-item-main:hover {
  /* background-color: #bbd3e0; */
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
  transition: all 0.5s ease-out;
}

.reading-notes-item-header {
  display: flex;
  width: 100%;
  height: 32px;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  font-size: 0.65rem;
  line-height: 0.85rem;
}
.reading-icon {
  display: inline-block;
  width: 1rem !important;
  height: 1rem !important;
  border: #a70000 1px solid;
  border-radius: 2rem;
  opacity: 0.5;
}
.travel-icon {
  display: inline-block;
  width: 1rem !important;
  height: 1rem !important;
  border: #4caee8 1px solid;
  border-radius: 2rem;
  opacity: 0.5;
}
.life-icon {
  display: inline-block;
  width: 1rem !important;
  height: 1rem !important;
  border: #4ce84c 1px solid;
  border-radius: 2rem;
  opacity: 0.5;
}

.reading-notes-item-header .title {
  text-align: end;
  max-width: 85%;
}

.reading-notes-item-abstract {
  display: flex;
  width: 100%;
  height: 3rem;
  line-height: 1rem;
  justify-content: flex-start;
  color: rgba(0 0 0 0.2);
  font-weight: 300;
  margin-top: 1rem;
  text-overflow: ellipsis;
}
.reading-notes-item-cover {
  display: inline-flex;
  width: 100%;
  height: 5rem;
  border: #cdd1ba 1px solid;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 0.5rem;
}
.reading-notes-item-cover img {
  width: 100%;
  object-fit: cover;
}

.reading-notes-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 1rem;
  padding: 5px;
  color: #888888;
  font-size: 0.5rem;
  font-weight: 300;
  margin-top: 5px;
}
.reading-notes-item-footer .book,
.reading-notes-item-footer .location,
.reading-notes-item-footer .theme {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 80%;
  flex-wrap: nowrap;
  text-overflow: ellipsis;
  fill: #888888;
  gap: 5px;
}
