@keyframes scroll-Y {
  from { background-position: 0 0;}
  to {background-position: 0 5px;}
}
@keyframes scroll-Y-100px {
  from { background-position: 0 0;}
  to {background-position: 200px 200px;}
}

@keyframes MarqueeAnimation {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-50%);
    }
}

.Scanlines {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;

    z-index: -25;

    opacity: 0.5;
    background: linear-gradient(rgb(18, 16, 16) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0), rgba(0, 255, 0, 0), rgba(0, 0, 255, 0));

    background-size: 100% 5px;
    animation: scroll-Y 1s linear infinite;
    pointer-events: none;
}

h2 {
    margin: 10px;
}

a {
    text-decoration: none;
    color: #e94179;
    margin: 5px;
}

p {
    margin: 10px;
}

body {
    font-family: 'Source Code Pro';
    color: var(--DefaultTextColor);
    image-rendering: pixelated;
}

.SkyBackground {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;

    z-index: -100;
    background-image: url(Images/CloudsBG.png);
    filter: hue-rotate(128deg) brightness(0.2);
    background-size: cover;
    pointer-events: none
}


#Shader {
    z-index: -98;
    /* opacity: 0.5; */
    width: 100%;
    height: 100%;
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;

}

/* Banner config*/
.BannerContainer {
    display: flex;
    align-items: center;
    margin: 10px;
    gap: 10px;
    height: 10%;
    overflow: hidden;
    position: relative;
}

.BannerBG {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url(Images/CloudsBG.png);
    background-size: cover;
    mix-blend-mode: color-dodge;
    filter: hue-rotate(169deg);
    border-radius: 10px;
    opacity: 0.5;
}

.LogoText {
    font-size: 80px; 
    margin: 0; 
    text-align: center; 
    font-family: 'Jersey 10';
}

.WarningBanner {
    background: repeating-linear-gradient(45deg,#3a1419, #3a1419 30px, #e43e59 0, #e43e59 60px);
    padding: 5px;
    color: #ffe9e9;
    border-radius: 10px;
    margin: 5px;
}

/* End of banner config*/

/* Main config*/
.Main {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.MainContainer {
    width: 700px;
}

.MainArtContainer {
    width: 350px;
}
.MainLinkContainer {
    width: 350px;
}
.MainNavigationContainer {
    width: 350px;
}

/* End of main config*/
.BoxContainer {
    background-color: #000000a4;
    border-radius: 8px;
    margin: 5px;
    padding: 5px;
}

.ArtBoxContainer {
    background-color: #000000a4;
    border-radius: 8px;
    margin: 5px;
    padding: 5px;
}

.LinkBoxContainer {
    background-color: #000000a4;
    border-radius: 8px;
    margin: 5px;
    padding: 5px;
}

.ListContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.HorizoltalListContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.LinkContainer {
    display: flex;
    flex-direction: column;
}

.NavigationButtons {
    display: flex;
    flex-direction: column;
}

.ArtImageCard {
    width: 150px;
    height: 150px;
    margin: 5px;
    border-radius: 4px;
    object-fit: cover;
}

.FeaturedArtImageCard {
    width: 100px;
    margin: 5px;
    border-radius: 4px;
}

.ProfoloPfp {
    width: 100px;
    height: 100px;
}

.ProfoloHolder {
    display: flex;
    margin: 10px;
}

.WebringStamp {
    height: 58px;
}
/* Custom details config*/
.PinkGlow {
    text-shadow: 0 0 10px #ffffff00, 0 0 20px #ffffff80, 0 0 30px #e6003659, 0 0 40px #e6000000, 0 0 50px #e6004d3d, 0 0 60px #e6004d29, 0 0 70px #e6004d57;
}

.HeaderDivider {
    flex: 1;
    height: 2px;
    margin-right: 8px;
    background-color: var(--DefaultTextColor);
}

.IntoductionCardGif {
    width: 150px;
    float: left;
}

/* Marquee config*/
.MarqueeContent {
    white-space: nowrap; 
    overflow: hidden;
}

.MarqueeMain {
    display: inline-block; 
    animation: MarqueeAnimation 15s linear infinite;
}

.MarqueeGradient {
    mask-image: linear-gradient(to left, transparent, transparent 2%, white);
}