@font-face {
  font-family: 'Fontstuck';
  src: url('fontstuck.otf') format('opentype');
}

body {
  margin: 0;
  height: 100vh;
  background: url(bg1.gif) no-repeat fixed center/cover;
  font-family: 'Fontstuck', sans-serif;
  cursor: url("cursor.png"), auto
}

#marvin-gif {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 100px;
  height: auto;
  z-index: 1000;
  background: none;
  border: none;
  display: block;
}

#husband-png {
  position: absolute;
  width: 80px;
  height: auto;
  left: 5px;
  top: -5px;
  z-index: 1000;
  background: none;
  border: none;
  display: block;
  animation-name: gelatine;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}

@keyframes gelatine {
  from, to { transform: scale(0.9, 1.1); }
  25% { transform: scale(1.1, 0.9); }
  50% { transform: scale(0.9, 1.1); }
  75% { transform: scale(1.1, 0.9); }
}

#header-row {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  z-index: 1001;
}

#coralme-gif,
#bivechair-gif {
  width: 80px;
  height: auto;
  background: none;
  border: none;
  display: block;
}

#about-text {
  color: #f66ff6;
  font-size: 36px;
  font-family: 'Fontstuck', sans-serif;
  text-decoration: underline;
  filter: drop-shadow(0px 0px 3px #FB76FF);
  margin: 0 20px; /* spacing between text and images */
}

#box-positioner {
  position: absolute;
  top: 130px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  z-index: 1001;
}

#border-png {
  width: 1100px;
  height: auto;
  background: none;
  border: none;
  display: block;
}

.scrollable-area {
  position: absolute;
  left: 170px;
  width: 300px;
  height: 200px;
  border: 2px solid #333;
  padding: 10px;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #f0f0f0; /* Light gray background to show the box */
  box-sizing: border-box;    /* Ensures padding and border are inside the set width/height */
}