
.container {
    display: grid;
    grid-template-areas: 
    'header header header'
    'scrollbar scrollbar scrollbar'
    'highlights content links'
    'jukebox content links'
    'refs updates ad'
    'footer footer footer';
    gap: 15px;
    row-gap: 20px;
    background-color: rgb(27, 15, 34);
    background-image: url(/Main-Page/pngs/tumblr_inline_mqicx2DT8C1qz4rgp540.gif);
    background-size: 600px;
    padding: 10px;
    grid-template-columns: 13vw 35vw 10vw;
    grid-template-rows: 40vh 5vh 40vh 17vh 20vh 7vh;
}
.container::before {
    background-color: #ffffff;
    background-size: 600px;
    position: absolute;
    width: 100-------
}

.grid-container > div {
  background-color: #f1f1f1;
  color:#000;
  padding: 10px;
  font-size: 30px;
  text-align: center;
}

.header {
    flex-wrap: nowrap;
    justify-content: flex-start;
    grid-area: header;
    align-items: flex-end;
}
.header img {
    width: 100%;
    
}

/* This is the start of the animation with the sliding bar, suposedly*/

.scrollbar {
    grid-area: scrollbar;
    min-width: 100%;
    display:flex;
    border-radius: 10px;
    overflow: hidden;
    position: initial;
    align-items:
        "center";
        --speed-to-loop: 35s;
        --timing-function: linear;
        ---gap: 400px


}
.scrollbar img {
    height: 45px;
    max-width: 100%;
    z-index: 999 !important;

}

@keyframes marquee{
    0%{
      transform: translateX(100%);
  }
  100%{
      transform: translateX(0);
  }
}
.marquee{
    animation: marquee var(--speed-to-loop) var(--timing-function) infinite;
    
}
    
    /* Dang Boi*/    

body {
    width: 1100;
    position: relative;
    display: flex;
    justify-content: center;

}

:root {
    
}

.window {
    background-color: #2a0455;
}

.fog {
    background: linear-gradient(45deg, #040955c5, #c906fa85, #8a158485);

}

.window-body.blk {
    background-color: rgb(0, 0, 0);
    color: rgb(166, 128, 236);

}

/* Right navigaion bar start*/
/* Stolen mostly from marshdotcom (with love) and catboo*/

.links {
    grid-area: links;
    width: auto;
    height: auto;
    border-radius: 10px;
    overflow-y: scroll;
    scrollbar-width: none;
}
.link-header {
    margin: 0;
    text-align: center;
    border-top-right-radius: var(--border-rad);
    border-top-left-radius: var(--border-rad);
    -webkit-text-stroke: white 4px;
    paint-order: stroke fill;
    background: linear-gradient(45deg, #45045585, #06fab185, #fa06ee85);
    border-radius: 3px;
}

.buttons {
    display: block;
    text-decoration: none;
    text-align: center;
    color: #000;
    border: 1px solid #9b8cdf00;
    background: linear-gradient(180deg, #855fdf, #b750d6 86%, #3a2f70);
    padding: 5px;
    width: auto;
    height: auto;
    border-radius: 5px;
    transition-duration: .3s;
    
}

.buttons:hover {
    color: rgb(255, 255, 255);
    background: linear-gradient(180deg, #452888, #7e2e70 86%, #3a2f70);
    width: 100%;
}

/* End of navigation bar*/

/* Picture window, windows 7 style taken from justbecaws */


.highlights {
    grid-area: highlights;
    width: auto;
    height: auto;
}

.jukebox {
    grid-area: jukebox;
    width: auto;
    height: auto;
    font-family: homevideo;
}

/* End of the fuckery */



.content {
    grid-area: content;
    /*background-color:#3a2f70;*/
    width: 100%;
    height: 100%;
    border-radius: 10px;

}

.changelog {
    grid-area: refs;
    width: auto;
    border-radius: 10px;

}
.stickers {
    grid-area: updates;
    width: auto;
    height: auto;
    border-radius: 10px;
}
.ad {
    grid-area: ad;
    background-color: rgb(50, 50, 51);
    border-radius: 10px;

    
}

footer {
    grid-area: footer;
    background: linear-gradient(45deg, #45045585, #06fab185, #fa06ee85);    width: 100%;
    height: 100%;
    border-radius: 10px;

}

footer p {
    display: flex; 
    justify-content: center; 
    color: black; 
    paint-order: stroke fill;
    padding: 10px;
}

