html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-align: center;
    background-color: #131B49;
    background-image: linear-gradient(to bottom, #FF83C1, #131B49);
    
    
}
.scanlines {
    overflow: hidden;
    position: relative;
}
.scanlines:before,
.scanlines:after {
    display: block;
    pointer-events: none;
    content: "";
    position: absolute;
}
.scanlines:before {
    width: 100%;
    height: 2px;
    z-index: 2147483649;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0.75;
    animation: scanline 6s linear infinite;
}
.scanlines:after {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2147483648;
    background: linear-gradient(
        to bottom,
        transparent 80%,
        rgba(0, 0, 0, 0.3) 51%
    );
    background-size: 100% 4px;
    animation: scanlines 10s steps(60) infinite;
}

@keyframes scanline {
    0% {
        transform: translate3d(0, 200000%, 0);
    }
}
@keyframes scanlines {
    0% {
        background-position: 0 50%;
    }
}
div {
    margin: 0;
    padding: 0;
}
div.scanlines {
    position: absolute;
}
div .jpg {
    width: 100vw;
    height: 100vh;
    border: none;
}
    

.top-decoration{
    position:fixed;
    inset:0;
    width:100vw;
    height:500vh;

    background-image:url("https://files.catbox.moe/tp7smq.png");
    background-repeat:repeat-x;

    pointer-events:none;
    z-index:9999;
}


.page{
    width: 700px;
    position:absolute;
    display:block;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}


.content-row{
    display:flex;
    gap:5px;
    align-items:flex-start;

}
.floating-row{
  display:flex;
  gap:100px;
  margin-left: 100px;

}


.panel{

    margin-bottom:0%;
    margin-top: 0%;
    border-width:30px;
    border-style:solid;
    border-image:url(images/border2.png) 17% fill round;

}

.box{

    border-width:20px;
    border-style:solid;
    display:inline-table;
    margin: 0%;

    border-image:url(https://file.garden/Z4-KIXj5okOfzeyR/borders/pinkcross.png) 25% round;

}


::-webkit-scrollbar {
  width: 4px;
}


::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgb(47, 5, 66);
  border-radius: 10px;
}


::-webkit-scrollbar-thumb {
  background: rgb(252, 102, 172);
  border-radius: 10px;

}

.node {
    animation: float 4s ease-in-out infinite;

}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}
    .border1 {

    border-width: 7px;
    border-style: solid;
    border-color: white;
    border-image: url(images/border.png) 8 fill round;
}

.border2 {
    border: 10px solid white;
    border-image: url(https://i.postimg.cc/zfrFjfVc/IMG-8836.gif) 8 fill round;
    background: none;
}
.marquee {
    height: 51px;
    width: auto;
    overflow: hidden;
    position: relative;

}

.marquee div{
    display: block;
    width: 200%;
    height: 51px;
    position: absolute;
    overflow: hidden;
    animation: marquee 20s linear infinite;
 }
@keyframes marquee{
 0% {
    left: 0;
}
50% {
    left: -100%;
}
100% {
    left: 0;
}

}

.gallery {
  width: 94%;
  height: 250px;
  overflow-y: auto;
  overflow-x: hidden;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;

  padding: 16px;

}

.artwork {

  display: flex;
  justify-content: center;
  align-items: center;

}

.button {
    position:relative;
    border: 10px solid white;
    border-image: url(https://i.postimg.cc/zfrFjfVc/IMG-8836.gif) 8 fill round;
    cursor: pointer;
    display: block;
    width: 139px;
    transition-duration: 0.4s;
}

.button:hover {
  background-color: #ff48b9; /* Green */
  color: white;
}