body {
    background-image: url("https://files.catbox.moe/zbpava.png");
    background-position: center;
    background-repeat: repeat;
    height: 160vh;
}

.logo {
    height:250px;
    position:absolute;
    left: 270px;
    top: 60px;
    z-index: 12;
}

.CRT {
    height:260px;
    position:absolute;
    left: 1130px;
    top: 140px;
    z-index: 13;    
}

@keyframes bobbing {
  0%   { transform: scaleX(1) translateY(0); }
  50%  { transform: scaleX(1) translateY(-10px); }
  100% { transform: scaleX(1) translateY(0); }
}

.text1 {
  height: 260px;
  position: absolute;
  left: 900px;
  z-index: 13;
  animation: bobbing 1s infinite ease-in-out;
}

.notepad {
    position: absolute;
    left: 1050px;
    top: 400px;
    z-index: 11;
}

.border {
    position: absolute;
    height: 250px;
    left: 1100px;
    transform: rotate(-12deg);
    top: 470px;
    z-index: 13;
}

.daph {
    position: absolute;
    height: 170px;
    left: 1140px;
    transform: rotate(-12deg);
    top: 510px;
    z-index: 12;
}

.vinyl-wrapper {
  position: absolute;
  left: 1100px;
  top: 840px;
  height: 210px;
  z-index: 11;
}

.vinyl {
  width: 100%;
  height: 100%;
}

.hitbox {
  position: absolute;
  cursor: pointer;
  z-index: 12;
}

.playpause {
  left: 60px;
  top: 30px;
  width: 160px;
  height: 80px;
}

.lowervolume {
  left: 158px;
  top: 150px;
  width: 25px;
  height: 25px;
}

.highervolume {
  left: 193px;
  top: 150px;
  width: 20px;
  height: 25px;
}

.skip {
  left: 226px;
  top: 150px;
  width: 20px;
  height: 25px;
}


.info {
    font-family: "writing";
    font-size: 20px;
    position: absolute;
    left: 1180px;
    top:690px;
    z-index: 11;
    text-align: center;
}

.recent {
    height:150px;
    position:absolute;
    left: 1150px;
    top: 170px;
    z-index: 12;     
}


.main-layout {
    display: flex;
    position: absolute;
    top: 340px;
    width: 1000px;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

.gallery-container {
    position: relative;
    width: 1000px;
    height: 680px;
    overflow: hidden;
}

.pages {
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease-in-out;
}

.page {
    flex-shrink: 0;
    height: 680px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px 0;
}

.window-row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.window {
    width: 180px;
    height: 180px;
    background: #333;
    border: 4px ridge #888;
    position: relative;
    overflow: hidden;
    perspective: 800px;
    cursor: pointer;
}

.window img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    transition: transform 0.6s ease;
}

.window::before {
     content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 2;
    transform-origin: left;
}

.window:hover::before {
    transform: rotateY(-100deg);
}

.window:hover img {
    transform: rotateY(0deg);
}

.lever-image {
    position: absolute;
    left: 920px;
    top: 125px;
    width: 100px;
    height: 340px;
    cursor: pointer;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.idkwhattonamethis {
    font-family: cursive2;
    color: #81ad77;
    text-align: center;
    position: relative;
    top:1060px;
}

.gang {
    height: 300px;
    position: absolute;
    top:860px;
    z-index: 12;
}

body a:link,
body a:visited,
body a:hover,
body a:active {
  text-decoration: none;
  color: #629158 !important; 
}

.lever-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}