@font-face {
  font-family: 'porky';
  src: url('font/PORKYS_.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@keyframes scrolling {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 100%;
  }
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20%);
  }
  100% {
    transform: translateY(0);
  }
}

body {
  background: url("images/pastel-purple-checkerboard-tartan-gingham-plaid-checkered-pattern-background-vector.png") repeat;
  animation: scrolling 20s linear infinite;
  background-color: #ffc4db;
  padding: 0;
  margin: 0;
  overflow: hidden;
  color: #000000;
  cursor: url('images/pearl.png'), auto; /* Custom leaf cursor for the entire page */
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Ensures the overlay doesn't block interactions */
  background: linear-gradient(to top, #5f34a4, #5f34a4, #9241fc, #9241fc); /* Updated colors */
  background-size: 100% 4px; /* Increased height for thicker lines */
  background-repeat: repeat-y; /* Ensures the pattern repeats vertically */
  opacity: 0.2; /* Increased opacity for more visibility */
  z-index: 1000; /* Ensure it overlays all content */
}

/* Scrollbar styles */
::-webkit-scrollbar {
  width: 20px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(to right, #756AB6, #AC87C5, #E0AED0);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #d9bff7;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #756AB6;
}

/* Changelog */
#updatelog {
  font-family: "porky", sans-serif;
  font-size: 50px;
  background-color: #fcfbff;
  color: #756AB6;
  width: 400px;
  height: 540px;
  position: relative;
  border: 20px solid #fcfbff;
  left: 65%;
  top: 60px;
}

#updatelogtext {
  font-family: "porky", sans-serif;
  font-size: 20px;
  color: #362e69;
  background-color: #756AB6;
  width: 350px;
  height: 350px;
  position: relative;
  left: 68%;
  bottom: 415px;
  overflow: auto;
}

#door {
  position: relative;
}

#dusty {
  position: fixed;
  bottom: 5%;
  left: 10%;
  width: 840px;
  height: 880px;
}

#logo {
  position: relative;
  animation: moveUpDown 2s linear infinite;
  z-index: 1;
}

#logomascot {
  position: relative;
  z-index: 2;
  bottom: 900px;
  left: 300px;
}
