body {
  background-image: url('photos/littlepiecesofmebackground.png');
  }
body {
font-family: 'Sorts Mill Goudy', serif;
}
.paragraph-box {
background: #fffefb;
border: 2px dashed #e2d6ce;
padding: 20px;
border-radius: 12px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0, 0.5);
font-family: 'Sorts Mill Goudy', serif;
color: #5a524d;
max-width: 500px;
}
.container {
display: flex;
align-items: center;
justify-content: center;
gap: 30px; 
padding: 40px;
max-width: 900px;
margin: 0 auto;
}
img {
max-width: 30%;
max-height: 30%;
}
.text {
font-size: 15px;
}
.main-title {
  text-align: center;
  font-size: 3em;
  font-family: 'Sorts Mill Goudy', serif;
  color: #b07b6e;
  margin-top: 40px;
}
.tape {
  width: 100px;
  height: 30px;
  background: #f2e2d4;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.main-title {
  text-align: center;
}
.tape {
  width: 100px;
  height: 30px;
  background: #f2e2d4;
  margin: 0 auto;
  margin-top: -10px;
  transform: rotate(-3deg);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-radius: 4px;
}
.tagline {
  text-align: center;
  font-style: italic;
  font-family: 'Caveat', cursive;
  color: #7c6f68;
  margin-top: -10px;
  margin-bottom: 40px;
  font-size: 1em;
}
.divider {
  width: 60px;
  height: 4px;
  background: #b07b6e;
  margin: 10px auto 30px auto;
  border-radius: 2px;
}
.flower-sticker {
  position: fixed; /* stays on the screen while scrolling */
  top: 60px;        /* distance from the top */
  right: 20px;      /* distance from the right (can be left: 20px for left side) */
  width: 120px; /* adjust size */
  z-index: 10;      /* make sure it’s on top */
  transform: rotate(10deg); /* scrapbook tilt */
  opacity: 0.9;
}

 

/* General Styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Sorts Mill Goudy', serif;
  background-color: #fbeff2;
  color: #3b2c2c;
}

h1, h2, h3 {
  text-align: center;
  color: #3b2c2c;
  letter-spacing: 1px;
}

/* Container */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

/* Image */
.image img {
  max-width: 180px;
  transform: rotate(-5deg);
  box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
}

/* Paragraph Box */
.paragraph-box {
  background: #fff0f4;
  border: 2px dashed #c78ba3;
  padding: 20px;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-size: 1.1em;
  line-height: 1.6;
}

/* Polaroid Style */
.polaroid {
  width: 220px;
  background-color: white;
  padding: 10px 10px 30px 10px;
  border: 1px solid #ccc;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  margin: 20px;
  transform: rotate(-2deg);
  transition: transform 0.2s;
}

.polaroid:hover {
  transform: rotate(0deg) scale(1.02);
}

.polaroid img {
  width: 100%;
  height: auto;
  display: block;
}

/* Sticker */
.sticker {
  position: fixed;
  top: 40px;
  left: 20px;
  width: 50px;
  height: auto;
  z-index: 10;
  transform: rotate(-15deg);
  opacity: 0.85;
}

.sticker:hover {
  transform: rotate(-10deg) scale(1.1);
  transition: transform 0.2s ease;
}

/* Mood Board */
.moodboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  padding: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.mood-item img {
  width: 20%;
  height: auto;
  border: 6px solid #fff0f5;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  transform: rotate(-2deg);
  transition: transform 0.2s ease;
}

.mood-item img:hover {
  transform: rotate(0deg) scale(1.05);
}

/* Buttons */
.nav-button, .back-button {
  display: inline-block;
  text-align: center;
  margin: 40px auto;
  padding: 10px 20px;
  font-family: 'Sorts Mill Goudy', serif;
  background-color: #f2c6d0;
  color: #3b2c2c;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: background 0.2s ease;
}

.nav-button:hover, .back-button:hover {
  background-color: #e3acbc;
}

/* Main Title */
.main-title {
  font-size: 2.8em;
  margin-top: 40px;
  color: #3b2c2c;
}




