@font-face {
    font-family: GoodDog;
    src: url(GOODDC.TTF);
}
@font-face {
    font-family: HaloDek;
    src: url(Halo\ Dek.ttf);
}
@font-face {
    font-family: DT;
    src: url(DeterminationMonoWebRegular.ttf);
}
@keyframes Scroll {
    0% {
        background-position: 0px 0px;
    }
    100% {
        background-position: 5vw 5vw;
    }
}

:root {
    --DefaultFont: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --Rounding: 8px;
    --Border: 3px;
    --Border-Thin: 2px;
    --GlassBlur: 3px;
    --Normal-Font-Size:4vh;
    --Purple: rgb(132, 0, 255);
    --Pink: rgb(247, 0, 255);
    --White: rgb(255, 255, 255);
    --GlassBG: rgba(0, 0, 0, 0.425);
    --GlassBGLight: rgba(255, 255, 255, 0.425);
    --BG-Gradient: linear-gradient(180deg,rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.41) 75%, rgba(0, 0, 0, 0.42) 100%);
}
@media (prefers-reduced-motion: no-preference) {
    ::view-transition {
        background-color: black;
    }
}

/* tags */

body {
    font-family: var(--DefaultFont);
    margin:0px;
    background-color: black;
    overflow: hidden;
}

header {
    font-family: GoodDog;
    z-index: 2;z-index: 2;
    font-size: var(--Normal-Font-Size);
    text-align: center;
    position: fixed;
    color: var(--White);
    background: var(--BG-Gradient);
    width: 100%;
    height: 12vh;
    backdrop-filter: blur(var(--GlassBlur));
    border-bottom: var(--Border) solid var(--GlassBG);
}

footer {
    color: white;
    font-size: 1.5vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    align-content: end;
    position: fixed;
    bottom: 0%;
    background: var(--BG-Gradient);
    width: 100%;
    height: 11vh;
    backdrop-filter: blur(var(--GlassBlur));
    border-top: var(--Border) solid var(--GlassBG);
}

menu {
    justify-content: center;
    margin: auto;
    margin-left: -2.5vw;
    height: 6vh;
    width: 100%;
    display: flex;
}

label {
    user-select: none;
}

a {
    transition: .5s;
    color: var(--Purple);
    text-decoration: underline;
    text-decoration-color: var(--Purple);
}
.LinkButton{
    background: var(--BG-Gradient);
    padding: .4vw;
    border-radius: var(--Rounding);
    line-height: 4.5vh;
}

.LinkButton:hover {
    color: var(--Pink);
    text-decoration-color: var(--Pink);
    font-size: 4.7vh;
}

/* Classes */

.Button {
    text-decoration: underline;
    text-decoration-color: var(--Purple);
    text-align: center;
    align-content: center;
    color:aliceblue;
    border-radius: var(--Rounding);
    margin: 10px;
    padding: 5px;
    width: 20vw;
    height: 4vh;
    background: var(--BG-Gradient);
    border: var(--Border-Thin) solid rgba(43, 41, 41, 0.6);
    text-shadow: 0px 0px 10px black;
    transition: .5s ease-out;
}
.Button:hover {
    font-size: 5vh;
    background-color: rgba(255, 255, 255, 0.6);
    margin: 15px;
    padding-bottom: 9px;
    width: 21vw;
    height: 4.5vh;
    border: var(--Border-Thin) solid rgba(255, 255, 255, 0.6);
}

.ArtPiece {
    display: none;
    position: relative;
    user-select: none;
    -webkit-user-drag: none;
    overflow: hidden;
    margin: 1vw 1vw 0 1vw;
    width: 100%;
    height: 40vh;
    border: var(--Border) solid var(--GlassBG);
    border-radius: var(--Rounding);
    background-color: var(--Purple);
    text-align: center;
    transition: .5s;
    transition-property: transform;
}

#NothingElse {
    user-select: none;
    -webkit-user-drag: none;
    overflow: hidden;
    margin: 1vw 1vw 0 1vw;
    width: 100%;
    height: 30vh;
    border: var(--Border) solid var(--GlassBG);
    background-color: var(--GlassBG);
    border-radius: var(--Rounding);
    text-align: center;
    transition: .25s;
    transition-property: transform;
}

.ArtPiece:hover {
    transform: scale(1.1);
    z-index: 10;
    cursor: pointer;
}

.ArtPieceIMG{
    user-select: none;
    -webkit-user-drag: none;
    filter: blur(3px) brightness(.4);
    image-rendering:optimizeQuality;
    object-fit:cover;
    width: 100%;
    height: 100%;
    align-self: center;
    aspect-ratio: 1/1;
    border-radius: var(--Rounding);
    transition: .5s;
    position: relative;
}
.ArtPiece:hover .ArtPieceIMG{
    filter: blur(0.5px) brightness(.8);
}

.ArtPiece:hover .ArtText {
    background-color: #00000068;
    border-radius: 5px;
    padding-left: 5px;
    padding-right: 5px;
    right: .2vw;
    bottom: .5vh;
}
.ArtPiece:hover .ArtDate {
    color: #00000000;
}
.ArtPiece:hover .ArtTags {
    color: #00000000;
}
.ArtText {
    bottom:1.5vh;
    right: .5vw;
    position: absolute;
    color:white;
    /* transform: translate(-.3vw, -910%); */
    z-index: 90;
    font-size: 2.5vh;
    transition: .5s;
}
.ArtDate {
    bottom:3.5vh;
    right: .5vw;
    position: absolute;
    color:rgba(255, 255, 255, 0.589);
    /* transform: translate(-.3vw, -910%); */
    z-index: 90;
    font-size: 2vh;
    transition: .5s;
}
.ArtTags {
    bottom:-.5vh;
    right: .5vw;
    position: absolute;
    color:rgba(255, 255, 255, 0.589);
    /* transform: translate(-.3vw, -910%); */
    z-index: 90;
    font-size: 1.5vh;
    transition: .5s;
}

#FooterContent {
    position: absolute;
    float: left;
    left: 0px;
    right: 0px;
    top: .5vh;
}
/* ID's */
@media (prefers-reduced-motion: no-preference) {
    #rain{
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: url(https://i.gifer.com/1pX9.gif);
        background-repeat: repeat-x;
        background-size: 10vw 100vh;
        mix-blend-mode:color-dodge;
        filter: brightness(1.2) blur(2px);
        z-index: -1;
    }   
}
#UserContainer::after {
    content: "";
    clear: both;
}

#Side, #Socials, #Main, #MainArt {
    view-transition-name: main-content;
    
}
#BGIC {
    background-image: url("diamondpattern.png");
    background-size: 5vw;
    position: absolute;
    width: 100vw;
    height: 100vh;
    overflow:hidden;
}
@media (prefers-reduced-motion: no-preference) {
    #BGIC {
        animation: Scroll 10s linear infinite;
    }
}

#BGI {
    z-index: -100;
    position: absolute;
    width: 102%;
    left: -1%;
    min-height: 100%;
    min-width: 100%;
    display: flex;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
}

#FiltersContainer {
    font-family: GoodDog;
    z-index: 3;
    line-height:3.5vh;
    color: white;
    text-align: center;
    position: fixed;
    font-size: 5vh;
    padding-top: 2vh;
    top: 14vh;
    right: 3.75vw;
    width: 17vw;
    height: 70vh;
    align-content: start;
    border: var(--Border) solid var(--GlassBG);
    background: linear-gradient(180deg,rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.31) 15%, rgba(0, 0, 0, 0.32) 20%);
    border-radius: var(--Rounding);
    overflow:hidden;
}

#Filters {
    text-align: left;
    padding: 15px 0px 0px 0px;
    font-family: var(--DefaultFont);
    font-size: 2.27vh;
    justify-self: center;
    align-self:center;
    backdrop-filter: blur(var(--GlassBlur));
    background: linear-gradient(180deg,rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.21) 15%, rgba(0, 0, 0, 0.22) 20%);
    outline: 2px;
    margin-top: 1.5vh;
    width: 95%;
    height: 87.5%;
    top: .5%;
    position: relative;
    border-radius: var(--Rounding);
    border: var(--Border) solid rgb(37, 37, 37);
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-gutter: stable both-edges;
    scrollbar-color: rgb(255,255,255) rgba(0,0,0,0);
}
#Filters label {
    display: inline;
    position: relative;
    border: 1px solid gray;
    line-height: 4.5vh;
    background: var(--GlassBG);
    border-radius: var(--Rounding);
    justify-self: left;
    text-align: left;
    padding: 2px 6px 3px 12px;
}
#Filters label input {
    position: relative;
    justify-self: center;
    align-self: center;
    bottom: .4%;
    left: -2%;
    transform: scale(1.3);
}
#Filters label input:checked{
    transform: scale(1.7);
    filter: hue-rotate(40deg);
}
.TF{
    display: none;
}
.Indent {
    position: relative;
    left: 3%;
}
.TFI {
    display: none;
}

#ArtContainer {
    justify-self: center;
    align-self:center;
    align-items: center;
    justify-items: center;
    display: grid;
    grid-template-columns: 22.95vw 22.95vw 22.95vw;
    grid-gap: 1vw;
    margin: 2px;
    background: var(--BG-Gradient);
    outline: 2px;
    margin-top: 1.5vh;
    width: 99%;
    height: 90%;
    border-radius: var(--Rounding);
    border: var(--Border) solid var(--GlassBG);
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-gutter: stable both-edges;
    scrollbar-color: rgb(255,255,255) rgba(0,0,0,0);
}

#MainArt {
    z-index: 3;
    line-height: 3.5vh;
    font-family: var(--DefaultFont);
    color: white;
    text-align: center;
    position: fixed;
    font-size: 3vh;
    padding-top: 2vh;
    top: 14vh;
    left: 3.75vw;
    width: 74vw;
    height: 70vh;
    align-content: start;
    border: var(--Border) solid var(--GlassBG);
    backdrop-filter: blur(var(--GlassBlur));
    background: linear-gradient(180deg,rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.41) 15%, rgba(0, 0, 0, 0.42) 20%);
    border-radius: var(--Rounding);
    overflow:hidden;
}
#ToolTip {
    position: absolute;
    color: white;
    background-color: rgba(0, 0, 0, 0.587);
    border-radius: 5px;
    z-index: 9999999999;
    padding: 4px;
    font-size: 15px;
    user-select: none;
    text-align: center;
    text-wrap-mode:wrap;
    max-width: 500px;
}

/* Spans */
.CFontB {
    font-family: HaloDek;
    font-size: 8vh;
}
.CFont {
    font-family: GoodDog;
    font-size: 4.5vh;
}
.SCFont {
    font-family: GoodDog;
    font-size: 2.5vh;
}

.WFont {
    margin: 0%;
    font-family: GoodDog;
    font-size: 2vh;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1vh;
    clear: both;
}
.hid {
    display: none;
}

.log {
    background-color: #00000048;
    margin: 5px;
    padding: 21px;
    width: 93%;
    font-size: 22px;
    line-height: 26px;
    border-radius: 8px;
}

#audio {
    filter: brightness(.3);
}

#ArtViewer {
    visibility: hidden;
    position: absolute;
    z-index: 60;
    width: 100vw;
    height: 100vh;
    background-color: #00000048;
    backdrop-filter: blur(var(--GlassBlur));
}
#CloseButton {
    transition: .25s; 
    transition-property: background-color, color, border, font-size, height, width;
    position: absolute;
    z-index: 1000;
    top: 2%;
    right: 1%;
    width: 90px;
    height: 90px;
    font-size: 50px;
    aspect-ratio: 1;
    color: var(--White);
    object-fit: contain;
    border-radius: var(--Rounding);
    background-color: var(--GlassBG);
    border: var(--Border) var(--GlassBG) solid;
}
#CloseButton:hover{
    color:black;
    cursor: pointer;
    background-color: var(--GlassBGLight);
    border: var(--Border) var(--GlassBGLight) solid;
    width: 95px;
    height: 95px;
}

#ViewedImage {
    visibility: hidden;
    height: 95%;
    max-width: 85%;
    position: absolute;
    justify-self: center;
    align-self: center;
    right: 0%;
    left: 0%;
    top: 0%;
    bottom: 0%;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}
