.content-box {
  background: #f7c5d8 !important;
}

body {
  background-image: url('assets/backgrounds/day.png');
  background-repeat: repeat;
  background-color: #c6efff; 
  min-height: 100vh;
  padding: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: url('assets/cursors/pulsingheart.gif'), auto;
}

@font-face {
font-family: butterfly;
src: url(assets/fonts/AButterflyOnaDaffodil.ttf);
}
 
#butterfly {
font-family: butterfly;
}

@font-face {
src: url(https://dl.dropbox.com/s/1479f8x52y3z5u4/rainyhearts.ttf);
font-family: hearts;
}
 
#hearts {
font-family: hearts;
font-size: 1em;
}

@font-face {
font-family: DS;
src: url(https://dl.dropbox.com/s/vlxjtnvrl9s0snp/Nintendo-DS-BIOS.ttf);
}
 
#DS {
font-family: DS;
}

@font-face {
src: url(https://dl.dropbox.com/s/nmwc5us5l9ba39d/Grandelo.ttf);
font-family: grandelo;
}
 
#grandelo {
font-family: grandelo;
font-size: 3em;
}

h2 {
  font-family: grandelo;
  font-size: 3em;
}

h3 {
  font-family: butterfly;
  font-size: 3em;
}

p {
  font-family: hearts;
  font-size: 1.5em; 
}

.diary-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 10px;
}

.diary-header-img {
  height: 80px;
  width: auto;
}

.rose-decoration {
  height: 80px;
  width: auto;
}

.diary-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
  background: transparent !important;
  padding: 16px;
}


.diary-entry {
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--entry-dark);
  width: 100%;
  box-sizing: border-box;
}


.diary-toggle {
  width: 100%;
  background: var(--entry-colour);
  border: none;
  border-bottom: 2px solid var(--entry-dark);
  padding: 12px 16px;
  text-align: left;
  font-family: butterfly, cursive;
  font-size: 1.8em;
  color: #333;
  cursor: pointer;
  transition: filter 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.diary-toggle::after {
  content: '▼';
  font-size: 0.6em;
  transition: transform 0.3s;
}

.diary-toggle.open::after {
  transform: rotate(180deg);
}

.diary-toggle:hover {
  filter: brightness(0.95);
}

.diary-content {
  display: none;
  background: color-mix(in srgb, var(--entry-colour) 40%, white);
  padding: 16px 20px;
}

.diary-content.open {
  display: block;
}

.diary-content p {
  font-family: hearts, cursive;
  font-size: 1.4em;
  color: #333;
  margin: 0;
  line-height: 1.7;
}

.diary-header-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.diary-header-img {
  height: 120px;
  width: auto;
}

.rose-decoration {
  height: 120px;
  width: auto;
}

.center-column {
  width: 600px;
  flex-shrink: 0;
}