:root {
  /* pastel palette */
  --background: #fff3ec;
  --paper: #ffffff;
  --text: #3a3a3a;
  --tape: #f6d6c9;
  --accent: #c7d7e8;
  --soft-shadow: rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 50px;
  background-color: var(--background);
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.6;
}

/* header */

header {
  margin-bottom: 60px;
}

h1 {
  font-size: 2.6rem;
  margin-bottom: 8px;
}

.subtitle {
  color: #777;
}

/* scrapbook cards */

.card {
  background-color: var(--paper);
  border-radius: 14px;
  padding: 30px;
  margin-bottom: 70px;
  position: relative;
  box-shadow: 0 10px 25px var(--soft-shadow);
}

/* tape effect */

.card::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 40px;
  width: 90px;
  height: 26px;
  background-color: var(--tape);
  opacity: 0.7;
  border-radius: 6px;
}

/* slight rotation for handmade feel */

.tilt-left {
  transform: rotate(-1.2deg);
}

.tilt-right {
  transform: rotate(1.4deg);
}

/* media placeholder */

.media {
  width: 100%;
  height: 220px;
  background-color: var(--accent);
  border-radius: 12px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 0.9rem;
}

/* text styling */

h2 {
  margin-top: 0;
  color: #555;
}

p {
  margin-bottom: 0;
}

/* links */

.links ul {
  list-style: none;
  padding-left: 0;
}

.links li {
  margin-bottom: 8px;
}

a {
  color: #b66a7a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* footer */

footer {
  margin-top: 100px;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}

