/* --- Page basics --- */
html, body {
  min-height: 100%;           /* ensures page grows with content */
  margin: 0;
  padding: 0;
  background-color: white;
  background-image: url("https://wowzow.neocities.org/Michael/transp31.png");
  background-size: cover;
  font-size: 14px;
  text-align: left;
  overflow-y: auto;           /* enable vertical scrolling */
}

/* --- Push all content below the fixed music player --- */
body::before {
  content: "";
  display: block;
  height: 60px;               /* same height as music player + some spacing */
}

/* --- Links --- */
a {
  color: #000080;
  text-decoration: underline;
  font-style: italic;
}

a:visited {
  color: #000080;
  text-decoration: underline;
  font-style: italic;
}

a:hover {
  color: #000080;
  text-decoration: underline;
}

/* --- Diary entry boxes --- */
.boxed {
  max-width: 500px;
  margin: 1.5rem auto;
  padding: 1.2rem;
  background-color: white;
  overflow: visible;
  z-index: 1;
}

/* Rainbow border */
.border {
  border-image: linear-gradient(
      #ff80ab,
      #ffb74d,
      #fff9c4,
      #aed581,
      #90caf9,
      #9575cd
    ) 30;
  border-style: solid;
  border-width: 3.5px;
  border-radius: 3px;
  z-index: 1;
}

/* --- GIF row --- */
.gif-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;             /* content spacing */
}

/* Optional: spacing between diary entries */
.diary-entry {
  margin-top: 20px;
}

/* --- Fixed music player --- */
#music {
  position: fixed;
  top: 0;
  left: 0;
  width: 305px;
  height: 50px;
  background: url('https://file.garden/ZRYtsnIP2EXOR4Kw/Site%20Files/musicplayer.png') no-repeat;
  background-size: 100% 100%;
  cursor: pointer;
  border: 1px solid #000;
  z-index: 9999;
}

#music #yt-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 305px;
  height: 50px;
  opacity: 0.00000001;
  pointer-events: none;
}

#music .info {
  position: absolute;
  top: 10px;
  left: 55px;
  color: #fff;
  font-size: 12px;
}

