@keyframes sueWalk {
    0% {
        background-position-x: 0px;
    }
    100% {
        background-position-x: -32px;
    }
}

body{
    background: dimgrey;
}

#aboveHeaderBG {
    width:100%;
    height:60px;
    background: url(https://file.garden/Z6x-0c5xHS17z_H6/sueWalk.webp), #989898;
    background-size: 32px;
    image-rendering: pixelated;
    position: fixed;
    top:-20px;
    left:0px;
    z-index: 299;
    background-repeat: repeat-x;
    background-position-y: 28px;
    animation: sueWalk 1s linear infinite;
    background
}

a.logo {
    font-size: 0px;
}

#fakeLogo a {
    content: "MS46!";
    font-size: 70px;
    position: fixed;
    font-style:italic;
    font-weight:bold;
    font-family:Charcoal;
    top: 0px;
    left:11px;
    z-index: 301;
    color: white;
    transition: text-shadow, 0.5s;
    filter: drop-shadow(2px 3px 2px #00000099);
}

#fakeLogo a:hover {
    text-shadow: 0px 0px 10px rgb(255 255 255);
    transition: text-shadow, 0.2s;
}

#fakeLogo a:active {
    text-shadow: 0px 0px 5px rgb(206 205 205);
    transition: text-shadow, 0s;
}

#header {
    height: 21px;
    background: linear-gradient(0deg, hsl(0deg 2% 8% / 95%) 0%, hsl(0deg 3% 21% / 90%) 100%);
    box-shadow: 0px 10px 20px 0px #000000a1;
    border-bottom: 0px;
    transition: text-shadow 0.5s;
    margin-top: 60px;
    backdrop-filter: blur(10px);
}

#header a {
    transition: text-shadow 0.2s;
}

#header a:hover {
    text-shadow: 0px 0px 10px rgb(255 255 255);
}

#hSub {
    background: #ff737300;
    margin-top: 31px;
    margin-left: 230px;
    width: auto;
}

#hSub a {
    transition: text-shadow .5s;
}

#hSub a:hover {
    text-shadow: 0px 0px 10px rgb(255 255 255);
    transition: text-shadow 0.2s;
}

#container {
    box-shadow: 0px 0px 20px #0000005e;
    background: white;
    padding-top: 50px;
    margin-top: 0px;
}

#omg {
    width: 84px;
    height: 24px;
    position: fixed;
    bottom: -12px;
    z-index: 302;
    background: #dedede;
    right: 0;
    transition: all .5s cubic-bezier(0.65, 0.05, 0.36, 1);
    border: 2px #ffffff outset;
    font-size: 18px;
    text-align: center;
    padding-top: 2px;
    cursor: default;
    user-select: none;
}

#omg:active {
    width: 100%;
    height: 100%;
    bottom: -12px;
    backdrop-filter: invert(1);
    background: transparent;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    right: 0px;
    color: transparent;
}

@font-face {
  font-family: Charcoal;
  src: url(https://file.garden/Z6x-0c5xHS17z_H6/Charcoal-CvmyBuDW.woff2);
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

button {
    border-radius: 10000px;
    border: 1px solid #aeadad;
    padding: 2px 20px;
    filter: drop-shadow(0px 2px 4px #00000057);
    background: linear-gradient(0deg, rgb(225 223 223) 0%, rgba(255, 255, 255, 1) 100%);
    color: #000000;
    margin: 5px 0px;
}

button:hover {
    border: 1px solid #ffa500;
    background: linear-gradient(0deg, hsl(40 32% 90% / 1) 0%, rgba(255, 255, 255, 1) 100%);
}

button:active {
    border: 1px solid hsl(39 100% 40% / 1);
    background: linear-gradient(0deg, hsl(40 10% 65% / 1) 0%, hsl(0 0% 80% / 1) 100%);
    
}

input {
    border-radius: 10000px;
    border: 1px solid #aeadad;
    padding: 2px 20px;
    filter: drop-shadow(0px 2px 4px #00000057);
    background: linear-gradient(0deg, rgb(225 223 223) 0%, rgba(255, 255, 255, 1) 100%);
    color: #000000;
    margin: 5px 0px;
}

input:hover {
    border: 1px solid #ffa500;
    background: linear-gradient(0deg, hsl(40 32% 90% / 1) 0%, rgba(255, 255, 255, 1) 100%);
}

input:active {
    border: 1px solid hsl(39 100% 40% / 1);
    background: linear-gradient(0deg, hsl(40 10% 65% / 1) 0%, hsl(0 0% 80% / 1) 100%);
}

#container:has(#noBlur:target) #header {
    backdrop-filter: blur(0);
}