body {
  @media screen and (max-width: 767px) {
    padding: 10px 10px;
  }
}

/* Content styles */

#content {
  width: -webkit-fill-available;
  position: relative;
  padding: 64px;
  background-color: var(--transparent-white-color);
  border: 1px solid var(--text-color);
  border-radius: 16px 0 16px 16px;

  @media screen and (max-width: 767px) {
    border-top-right-radius: 16px;
    padding: 16px;
  }
}

.page-title-container {
  position: relative;
  display: flex;
  width: 100%;
}

.page-title-container > #title {
  @media screen and (min-width: 933px) {
    position: absolute;
    top: -130px;
  }

  @media screen and (min-width: 768px) and (max-width: 932px) {
    position: absolute;
    top: -120px;
    width: 50%;
  }

  @media screen and (max-width: 767px) {
    width: 55%;
  }
}

#content > #entries {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}

/* Window styles */

:root {
  --notepad-color: #ff7dc7;
  --notepad-dark-color: #b84a88;
  --notepad-shadow: #00000080;
  --page-color: #f5f5f5;
  --page-dark-color: #cdbac8;
  --page-very-dark-color: #c3abb8;
  --page-horizontal-line-color: #dedede;
  --page-vertical-line-color: #ffaa9f;
  --ring-color: #8e7684;
  --ring-light-color: #ffffff;
}

.notepad {
  background-color: var(--notepad-color);
  width: 200px;
  height: 200px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: 1px solid var(--notepad-dark-color);
  border-bottom: 2px solid var(--notepad-dark-color);
  border-top: none;
}

.notepad:hover {
  box-shadow: 0 0 8px var(--secondary-color);
}

.notepad > .rings {
  rotate: 90deg;
  height: 100%;
  width: 100%;
  position: absolute;
  top: -16px;
  left: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.notepad > .rings > .ring {
  width: 40px;
  height: 10px;
  border-radius: 100px;
  background: -webkit-linear-gradient(left, var(--ring-color), var(--ring-light-color), var(--ring-color), var(--ring-color));
  box-shadow: 2px 0 4px var(--notepad-shadow);
  position: relative;
}

.notepad > .rings > .ring:after {
  display: block;
  content: '';
  border-radius: 100px;
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--notepad-dark-color);
  z-index: -1;
  top: -3px;
}

.notepad > .rings > .ring:before {
 left: -3px; 
}

.notepad > .rings > .ring:after {
 right: -3px;
}

.notepad > .pages {
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  background-color: var(--page-dark-color);
  border-bottom: 4px solid var(--page-dark-color);
  border-radius: 4px;
  box-shadow: 0 2px 4px var(--notepad-shadow);
}

.notepad > .pages > .page {
  background-color: var(--page-color);
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.notepad > .pages > .page > .list {
  padding: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--page-horizontal-line-color);
  margin-top: 24px;
}

.notepad > .pages > .page > .list li {
  list-style: none;
  border-bottom: 1px solid var(--page-horizontal-line-color);
  text-indent: 25px;
  height: auto;
}

.notepad > .pages > .page > .list li b {
  color: var(--secondary-color);
}

.notepad > .pages > .page > .lines {
  border-left: 1px solid var(--page-vertical-line-color);
  border-right: 1px solid var(--page-vertical-line-color);
  width: 2px;
  left: 20px;
  height: 100%;
  position: absolute;
}

.notepad > .pages > .page > .page-fold {
  width: 30px;
  aspect-ratio: 1;
  background-color: var(--page-very-dark-color);
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
}

.notepad > .pages > .page > .page-fold > div {
  position: relative;
  width: 100%;
  height: 100%;
}

.notepad > .pages > .page > .page-fold > div > .triangle {
  position: absolute;
  width: 0;
  height: 0;
  border: 30px solid transparent;
  border-left-color: var(--page-dark-color);
  border-top: none;
}

a > .new-highlight {
  position: absolute;
  z-index: 1;
  left: 8px;
  top: -8px;
}

/* Decoration */

#clippy {
  position: fixed;
  bottom: -40px;
  left: -40px;
  z-index: -1;
}

#rover {
  position: fixed;
  bottom: -10px;
  right: 0;
  mix-blend-mode: multiply;
  z-index: -1;
}

#background-img {
  position: fixed;
  z-index: -2;
  height: 100vh;
  mix-blend-mode: soft-light;
  top: -32px;
}