
/* You can either copy the below and paste it between style tags on your HTML page, OR you can copy this to a file and name it .css and link it from your HTML page. */

:root {
  --accent-light: #6fa77a;   /* soft moss green */
  --accent-dark: #2f5d3a;    /* deep forest green */
  --accent-muted: #4a5f4d;   /* muted earthy green */
}

html,
body {
  margin: 0;
  font-family: "Verdana";
  font-size: 10px;
  background-color: green;
  background-image: url("forestback.png");
  color: #e6dccf;
}
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;
  max-width: 900px;
  height: 860px;
  margin: 0 auto;
}
.post-it,
.white-box,
.notebook,
.yellow-note {
  position: absolute;  
  background-color: rgba(20, 15, 10, 0.85);
  border-radius: 8px;
  padding: 5px;
}
.post-it {
  top: 20px;
  left: 5px;
  width: 150px;
}
.post-it img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  margin-bottom: 8px;
}
.white-box {
  top: 20px;
  left: 170px;
  width: 480px;
  height: 100px;
  overflow: hidden;
}
.notebook {
  top: 140px;
  left: 170px;
  width: 480px;
}

.notebook > .wrapper {
  overflow: auto;
  height: 450px;
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  text-align: left;
  scrollbar-width: thin;
  scrollbar-color: #000 #c4c4c4;
}

.notebook > .wrapper p {
  line-height: 16.2px;
  margin-bottom: 16.5px;
}
}
.yellow-note {
  left: 670px;
  top: 140px;
  width: 190px;
  height: 500px;
  overflow: auto;
  scrollbar-width: thin; /* "auto" or "thin" */
  scrollbar-color: #e8d866 #d6ca71; /* scroll thumb and track */
}
.yellow-note img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}
.title {
  font-family: 'IM Fell English SC', serif; /* 👈 ADD THIS LINE */
  font-size: 35px;
  font-weight: bold;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(200, 170, 120, 0.2);
  color: var(--accent-dark);
}
.content {
}
.subtitle {
  font-family: 'IM Fell English SC', serif; /* 👈 ADD */
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(200, 170, 120, 0.2);
  margin-bottom: 10px;
  color: var(--accent-dark);
} 
ul.pixelbullets {
  list-style-type: disc;
  padding-left: 25px;
}
.page-title {
  font-family: 'IM Fell English SC', serif; /* 👈 ADD */
  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;
}