* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;

  background-image: url("images/hehe.png");
  background-repeat: repeat;
  background-attachment: fixed;


  font-family: 'Cormorant Upright', serif;

  color: #a495b8;
}

/* title */
.title {
  padding: 30px 40px;
}

.title h1 {
  font-family: 'Mountains of Christmas', cursive;
  font-size: 64px;
  margin: 0;
  color: #594870;
}


/* chaos container */
.chaos {
  position: relative;
  padding: 100px;
  min-height: 100vh;
}

/* boxes */
.box {
  position: absolute;
  background: rgba(60, 50, 80, 0.75);
  border: 2px dashed rgba(160, 130, 200, 0.5);
  border-radius: 2px;
  padding: 18px;
 
}

/* headings */
.box h2 {
  font-family: 'Mountains of Christmas', cursive;
  font-size: 26px;
  margin-top: 0;
  color: ##a497b8;
}

/* diary */
.diary {
  top: 40px;
  left: 50px;
  width: 260px;
}

.scroll {
  max-height: 220px;
  overflow-y: auto;
  font-family: 'Cormorant Upright', serif;
  font-size: 20px;
  line-height: 1.8;
}

/* about */
.about {
  top: 50px;
  right: 60px;
  width: 240px;
  transform: rotate(-2deg);
}

/* links */
.links {
  bottom: 35px;
  left: 120px;
  width: 200px;
}

.links a {
  display: block;
  font-family: 'Cormorant Upright', serif;
  font-size: 18px;
  color: #e4d8ff;
  text-decoration: none;
  margin-bottom: 6px;
}

.links a:hover {
  text-shadow: 0 0 5px #b18cff;
}

/* notes */
.notes {
  bottom: 80px;
  right: 150px;
  width: 220px;
  transform: rotate(3deg);
  font-style: italic;
}

/* stickers */
.sticker {
  position: absolute;
  opacity: 0.9;
  pointer-events: none;
}

.flwr {
  top: 200px;
  left: 600px;
  width: 130px;
  transform: rotate(-10deg);
}

.flwr2 {
  bottom: 120px;
  right: 40px;
  width: 250px;
}

.lilypad {
  top: 15px;
  left: 300px;
  width: 800px;
}


/* sparkles */
.sparkle {
  position: absolute;
  width: 30px;
  pointer-events: none;
  animation: fade 0.8s forwards;
}

@keyframes fade {
  to {
    opacity: 0;
    transform: scale(0.2);
  }
}


.thoughts {
  background-image: url("images/blue-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  min-height: 100vh;
  margin: 0;

  display: flex;
  justify-content: center;
  align-items: center;
}
.notebook-container {
  position: relative;
  width: 600px; /* match your notebook image */
}
.notebook {
  width: 100%;
  
}

.moon {
  width: 300px;
  top: 30px;
  left: 20px;
}

.butterflies {
  width: 400px;
  bottom: 5px;
  right: 20px;
}

.clover {
  width: 300px;
  top: 150px;
  right: 120px;
}

.thoughts-box {
  position: absolute;
  top: 25px;   /* adjust until it sits on the page */
  left: 40px;

  width: 200px;
  height: 350px;

  background: rgba(255, 255, 255, 0.0);
  overflow-y: auto;

  padding: 15px;

  font-family: 'Cormorant Upright', serif;
  font-size: 18px;
  color: #3b2f2f;
  line-height: 1.7;
}

.thoughts2-box {
   position: absolute;
  top: 25px;   /* adjust until it sits on the page */
  right: 40px;

  width: 200px;
  height: 350px;

  background: rgba(255, 255, 255, 0.0);
  overflow-y: auto;

  padding: 15px;

  font-family: 'Cormorant Upright', serif;
  font-size: 18px;
  color: #3b2f2f;
  line-height: 1.7;
}





