/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

:root {
  --accent-light: #fb90b6;
  --accent-dark: #c9507a;
  --accent-muted: #afafaf;
}

html,
body {
  margin: 0;
  font-family: "Verdana";
  font-size: 10px;
  background-color: gray;
  background-image: url("https://files.catbox.moe/bpzezw.jpg");
  background-repeat: repeat;
  background-size:1500px 700px;
}
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://sadgrl.online/images/lyts/not-mine/notebook-collage.png");
  background-repeat: no-repeat;
  height: 100%;
  max-width: 900px;
  height: 770px;
  margin: 0 auto;
}
.post-it,
.white-box,
.notebook,
.yellow-note {
  position: absolute;
  background-color: grey;
}
.post-it {
  top: 20px;
  left: 40px;
  width: 130px;
  text-align: center;
  line-height: 50px;
  font-family: "Courier New", monospace;
  background-image: url("https://files.catbox.moe/3qn2zl.png");
  background-size: 150px 150px;
  background-color: transparent;
}
.white-box {
  top: 20px;
  left: 180px;
  width: 500px;
  height: 100px;
  overflow: hidden;
  background-color: grey;
  background-image: url("https://files.catbox.moe/p50psa.GIF");

}
.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 */
  background-color: grey;
}
.notebook > .wrapper p {
  line-height: 16.2px;
  margin-bottom: 16.5px;
  background-color: grey;
}
.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 */
  background-image: url("https://files.catbox.moe/h15vds.jpg");
}
.title {
  font-size: 35px;
  font-weight: bold;
  letter-spacing: 1px;
  border-bottom: 3px dotted var(--accent-muted);
  color: var(--accent-dark);
  background-image: url("https://files.catbox.moe/p50psa.GIF");
  background-size: 150px 200px;
}
.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);
}
.pixelbullets {
  list-style-image: url("https://sadgrl.online/images/lyts/not-mine/hearth_rosa.gif");
  padding-left: 25px;
  background-color: grey;
}
.page-title {
  font-size: 25px;
  padding-bottom: 4px;
  color: var(--accent-dark);
  font-weight: bold;
  background-color: grey;
}
.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;
}

