* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;

  scrollbar-color: rgb(146, 159, 112) #ffffff;
  scrollbar-width: thin;
}



@font-face {
  font-family: "Biro Script";
  src: url(/fonts/biro_script/Biro_Script_reduced.ttf);
}

@font-face {
  font-family: "Dirty Cursive";
  src: url(/fonts/dirtycursive/DirtyCursive.ttf);
}

@font-face {
  font-family: "Imweird";
  src: url(/fonts/imweird/i_mWeird.TTF);
}

@font-face {
  font-family: "Snow White";
  src: url(/fonts/snow_white/Snow\ White.ttf);
}



/*index*/

body {
  background: url(/images/water.gif);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  color: #eaeaea;
  font-family: "Courier New", monospace;
  margin: 0;

}

.main {
  background: none;
  float: left;
  width: 900px;
  margin: 5vh;
  padding: 20px;
}

header {
  text-align: center;
  margin-bottom: 20px;
}

header h1 {
  font-family: "Snow White";
  font-size: 40px;
  color: white;
  margin: 0;
}

header p {
  font-size: 14px;
  color: #b1b1b1;
}

nav {
  text-align: center;
  margin: 20px 0;
  padding: 10px;
  font-family: "Biro Script";
  font-size: 25px;
  background-color: rgba(255, 255, 255, 0.392);
}

nav a {
  margin: 0 15px;
  color: white;
  text-decoration: none;
}

.section {
  margin-bottom: 40px;
}

.section h2 {
  color: white;

  padding-bottom: 5px;
  font-family: "Biro Script";
}

.card {

  background: #ffffff6e;
  padding: 5vh;
  margin-top: 10px;
  color: white;
}

.future {
  color: #ffffff80;
  animation: Pulse infinite 5s;
}

@keyframes Pulse {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

.card a {
  font-size: 25px;
  color: white;
  font-family: "Biro Script";
}

.highlight {

  background: #ffffff6e;
  height: 10vh;
  overflow-y: scroll;
}

.log-entry {
  border-left: 3px solid white;
  padding-left: 10px;
  margin: 10px 0;
  font-size: 14px;
  color: white;
}

footer {
  text-align: center;
  font-size: 12px;
  color: #b0b0b0;
  border-top: 1px dashed white;
  padding-top: 10px;
}

#pngs {
  filter:
    drop-shadow(1px 0px 0px white) drop-shadow(-1px 0px 0px white) drop-shadow(0px 1px 0px white) drop-shadow(0px -1px 0px white);
  position: absolute;
  transition: all 0.2s ease;
}


#pngs-fixed {
  filter:
    drop-shadow(1px 0px 0px white) drop-shadow(-1px 0px 0px white) drop-shadow(0px 1px 0px white) drop-shadow(0px -1px 0px white);
  position: fixed;
    transition: all 0.2s ease;

}

#pngs:hover , #pngs-fixed:hover {
    rotate: -5deg;
}

.leaf {
  transform: scaleX(-1);
  left: 95vh;
  top: -2vh;
  rotate: 35deg;
}

.flower1 {
  scale: 0.3;
  rotate: -50deg;
  left: -60vh;
  top: -62vh;
}

.flower2 {
  left: 4vh;
  top: 3vh;
}

.flower3 {
  left: 85vh;
  top: 1vh;
  scale: 0.65;
}

.flower4 {
  right: 14.5vh;
  bottom: 80vh;
  z-index: 5;
}

.extras {
 background: none;
  position: fixed;
  width: 350px;
  margin: 5vh;
  padding: 10px;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.extra-header {
  color: white;
  padding-bottom: 5px;
  margin-bottom: -5px;
  font-family: "Biro Script";
}

.extras button {
  text-align: center;
  margin: 20px 0;
  padding: 10px;
  font-family: "Biro Script";
  font-size: 25px;
background: none;
border: none;
  margin: 0 15px;
  color: white;
  text-decoration: none;
    transition: all 0.2s ease;
  cursor: pointer;
}

.extras button:hover {
  transform: scale(1.1);
  color: #4c4e49;
}

.extras button:active {
  transform: scale(0.95);
}

#wobble {
  font-size: 30px;
  position: fixed;
  right: 0;
  bottom: 0;
  font-family: "Biro Script";
  margin-right: 50px;
  mix-blend-mode: overlay;

}

.carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 15px;
  margin-top: 10px;

  scroll-behavior: auto;

  background: #ffffff4a;
  border-radius: 10px;
}

.carousel::-webkit-scrollbar {
  height: 6px;
}

.carousel::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.5);
  border-radius: 10px;
}

.carousel img {
  flex: 0 0 auto;
  width: 220px;
  height: 160px;
  object-fit: cover;

  border-radius: 8px;
  background: #ffffff6e;
  padding: 5px;

  transition: all 0.25s ease;
}

.carousel img:hover {
  transform: scale(1.08) rotate(-1deg);
}