
:root {
  --accent-light: #fb90b6;
  --accent-dark: #3C1518;
  --accent-muted: #A44200;
}

html,
@font-face {
    font-family: "Chocolatier";
    src: url("fonts/font_chocolatier.woff2") format("woff2"),
         url("fonts/font_chocolatier.woff") format("woff"),
         url("fonts/font_chocolatier.ttf") format("truetype");
}
body {
  margin: 0;
  font-family: "Chocolatier";
  font-size: 12px;
  background-color: #ECE4B7;
  background-image: url("https://sadgrl.online/images/bgs/tile/heartpinkpas.gif");
}
strong {
  color: var(--accent-dark);
}
em {
  color: var(--accent-light);
}
u {
  color: var(--accent-dark);
}
a {
  color: var(--accent-dark);
  font-weight: bold;
  text-decoration: none;
}

.wrapper {
  padding: 20px;
}

.container {
  position: relative;
  content: "";
  background-image: url("https://file.garden/ZuyTlk5nUSPb-f9Z/Fondo.png");
  background-repeat: no-repeat;
  height: 100%;
  max-width: 900px;
  height: 770px;
  margin: 0 auto;
}
.post-it,
.white-box,
.notebook,
.yellow-note {
  position: absolute;
}
.post-it {
  top: 20px;
  left: 40px;
  width: 123px;
}
.white-box {
  top: 20px;
  left: 180px;
  width: 500px;
  height: 100px;
  overflow: hidden;
}
.notebook {
  top: 172px;
  left: 145px;
}
.notebook > .wrapper {
  overflow: auto;
  height: 450px;
  width: 380px;
  padding-right: 84px;
  scrollbar-width: thin; /* "auto" or "thin" */
  scrollbar-color: #000 #c4c4c4; /* scroll thumb and track */
}
.notebook > .wrapper p {
  line-height: 16.2px;
  margin-bottom: 16.5px;
}
.yellow-note {
  left: 640px;
  top: 160px;
  width: 180px;
  height: 550px;
  overflow: auto;
  scrollbar-width: thin; /* "auto" or "thin" */
  scrollbar-color: #e8d866 #d6ca71; /* scroll thumb and track */
}
.title {
  font-size: 35px;
  font-weight: bold;
  letter-spacing: 1px;
  border-bottom: 3px dotted var(--accent-muted);
  color: var(--accent-dark);
}
.content {
}
.subtitle {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  border-bottom: 3px dotted var(--accent-muted);
  margin-bottom: 10px;
  color: var(--accent-dark);
}

.page-title {
  font-size: 25px;
  padding-bottom: 4px;
  color: var(--accent-dark);
  font-weight: bold;
}
.footer {
  text-align:center;
}

.yellow-note::-webkit-scrollbar {
  width: 12px; /* width of the entire scrollbar */
}

.yellow-note::-webkit-scrollbar-track {
  background: #e8d866; /* color of the tracking area */
}

.yellow-note::-webkit-scrollbar-thumb {
  background-color: #d6ca71; /* color of the scroll thumb */
}
.notebook > .wrapper::-webkit-scrollbar {
  width: 12px; /* width of the entire scrollbar */
}

.notebook > .wrapper::-webkit-scrollbar-track {
  background: #c4c4c4;; /* color of the tracking area */
}

.notebook > .wrapper::-webkit-scrollbar-thumb {
  background-color:  #000; /* color of the scroll thumb */
}
.removeThis {
  background-color:yellow;
}
.spoiler {
  background-color: #444; /* Fondo oscuro para indicar spoiler */
  color: transparent;    /* Texto invisible inicialmente */
  border: 1px solid #888;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;     /* Evita seleccionar el texto por accidente */
  display: inline-block; /* Ajusta el tamaño al contenido */
  line-height: 1;        /* Reduce la altura de línea al mínimo */
  padding: 0 2px;        /* Espaciado mínimo horizontal */
  margin: 0;             /* Elimina márgenes adicionales */
  transition: background-color 0.3s ease, color 0.3s ease; /* Animación suave */
}

  .spoiler.revealed {
  background-color: transparent; /* Elimina el fondo al revelarse */
  color: inherit; /* Muestra el texto con el color original del documento */
}
}
