body {
  cursor: url('../img/misc/cloud_cursor.gif'), auto;
  margin: 0;
  font-family: monospace;
  color: #af72b6;
}

a {
  color: #af72b6;
}

a:hover {
  cursor: url('../img/misc/jerry_cursor.gif'), pointer;
}

/* Header */
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 25%;
}

.nav-row {
  display: flex;
  justify-content: center;
  gap: 0px;
}

.nav-row img:hover {
  transform: scale(1.1);
}

.image-row {
  display: flex;
  justify-content: center;
  gap: 0px;
}

.button-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.button-strip img {
  height: 31px;
  width: auto;
}

/* Home Page Layout */
.page {
  padding-bottom: 80px;
}

.layout {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.left-rail {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.left-rail img {
  width: 60px;
  height: auto;
}

.left-rail img:hover {
  transform: scale(1.1);
}

.main-box {
  background: #e3f8ff;
  padding: 24px;
  flex: 1;
  max-width: 900px;
  min-width: 400px;
  position: relative;
}

.center-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  max-width: 900px;
  min-width: 400px;
}

.sub-box-row {
  display: flex;
  gap: 24px;
}

.sub-box {
  flex: 1;
  padding: 16px;
}

.content {
  margin-top: 20px;
}

.right-rail {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.profile-box {
  width: 180px;
  aspect-ratio: 1 / 1;
  background: #ffb6b6;
  padding: 12px;
  text-align: center;
  position: relative;
}

/* Corner decorations */
.corner {
  position: absolute;
  height: auto;
  z-index: 10;
  pointer-events: none;
  image-rendering: pixelated;
}

/* profile boxes: 12px padding */
.profile-box .corner-tr {
  top: -28px;
  right: -28px;
}

.profile-box .corner-tl {
  top: -28px;
  left: -28px;
}

/* main box: 24px padding */
.main-box .corner-bl {
  bottom: -40px;
  left: -40px;
}

.corner-tl {
  top: -40px;
  left: -40px;
}

.corner-tr {
  top: -40px;
  right: -40px;
}

.corner-bl {
  bottom: -40px;
  left: -40px;
}

.corner-br {
  bottom: -40px;
  right: -40px;
}


.blinkies {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.blinkies img {
  width: 200px;
}

.blinkies img:hover {
  transform: scale(1.1);
}

.monochrome-hover {
  transition: filter 0.8s ease-in-out;
}

.monochrome-hover:hover {
  filter: grayscale(100%);
}

.stamps {
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 gap: 10px;
}

.stamps img {
  height: 50px;
}

/* Journal Page */
.box-wrapper { /* replaces side rails */
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.journal-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.side-box {
  width: 220px;
  min-height: 300px;
  padding: 16px;
  position: relative;
  flex-shrink: 0;
}

.themed-box {
  background: #3A2317;
  color: #e6cfff;
  font-family: "Times New Roman", Times, serif;
}

.screen-decor {
  position: fixed;
  pointer-events: none;
  z-index: 999;
}

.apple-tree {
  right: -20px;
  bottom: -30px;
  width: 280px; /* adjust to taste */
}

.journal-header {
  text-align: center;
  margin-bottom: -20px; /* pulls it toward the box */
  position: relative;
  z-index: 5;
}

.journal-header h1 {
  font-family: "Parisienne", cursive;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-shadow: 1px 1px 0 rgba(0,0,0,0.15);
  letter-spacing: 0.05em;
  color: #000;
  margin: 0;
}

/* Music Page */
.music-header {
  position: relative;
}

.music-box {
  position: relative;
}

.music-side {
  position: absolute;
  right: -120px;
  top: 120px;
  width: 240px;
}

.music-decor {
  position: absolute;
  pointer-events: none;
  z-index: 5;
}

.music-decor.piano {
  bottom: -30px;
  left: -40px;
  width: 220px;
}

.music-decor.cat {
  top: -60px;
  right: 60px;
  width: 140px;
}