
body {

    color:var(--secondary-color);
    margin: 0px;
    padding: 1px;
    width: 100vw;
    height: 100vh;
    font-size: 2rem;
background-color: var(--primary-color);
    animation: hue 20s infinite;
}

*{
    
    font-family:monospace;
    font-family: 1.5rem;
    text-transform: uppercase;
}


:root {
    --primary-color: #ffffff;
    /* Standard: Schwarz */
    --secondary-color: #000000;
    /* Standard: Weiß */
}







#page_settings{
    position: absolute;
    z-index: 15;
    display: flex;
    width: 20%;
    height: 30px;
    display: flex;
    flex-direction: row-reverse;
    margin-left: 1200px;

}
#primary-color,
#secondary-color {
    width: 30px;
    height: 30px;
    border: var(--secondary-color) 2px solid;
    padding: 0%;
    
}





#alphabetContainer {
    background-color: var(--primary-color);
    display: grid;
            grid-template-columns: auto auto auto;

    gap: 0px 0px;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: scroll;

}
@keyframes flip {
    0% {
        transform:  rotateY(180deg);


    }

                90% {
                    transform: rotateY(0deg);
        
        
                }

    95% {
        transform: rotateY(5deg);


    }
    100%{
        transform: rotateY(0deg);
    }
}



.letter-svg {
    border: var(--secondary-color) solid 2px;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: inline-block;
            filter: drop-shadow(20px 20px 20px var(--secondary-color));
            
}
.letter-svg:hover{
grid-column: (1,3);
}

                .letter-button{
                    width: 50px;
                    height: 50px;
                    background-color: #00000000;
                    border-radius: 50%;
                    border: 2px solid var(--secondary-color);
                    color: var(--secondary-color);
                    
                }





    button {
        appearance: none;
        outline: none;
        font-size: 2vmin;
        border: 1.5px solid var(--secondary-color);
        color: var(--secondary-color);
        background-color: rgba(255, 222, 173, 0);

    }
button:active{
    box-shadow: 2px 2px var(--secondary-color);
scale: 95%;
}




* {
    transition: border-radius 0.3s ease;
    /* Übergang für border-radius */
}

.nav-button{
    width: 150px;
    height:50px;
    border: none;
}
.main{
  height:  100vh;
width: 100vw;
}








.settings-container{
width: 15%;
height: 100vh;

display: flex;
flex-direction: column;
    border-right: 1.5px solid var(--secondary-color);
    font-size: 1.5rem;
    overflow-y: scroll;
}


.category-container{
width: 100%;
height: 100vh;
display: flex;

}
.workspace{
    margin-top: 5vh;
   width:  85%;
   height: 100%;
    overflow: scroll;
    display: flex;
    flex-wrap: wrap;
    

}





ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    font: bold 1.5rem sans-serif;
    text-transform: uppercase;
    color: rgb(255, 0, 0);

}

ul li {
    padding: 0 .5em .25em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: .3s;
}

ul li:hover {
    color: #fff;
}

ul li:before {
    content: "";
    position: absolute;
    inset: calc(100% - 3px) 0 0 0;
    /* 3px = the thickness */
    background: var(--secondary-color);
    /* the color */
    scale: 0 1;
    transition: .3s, translate 0s .3s;
}

ul:hover li:before {
    scale: 1;
}

ul li:hover:before {
    translate: 0;
    transition: .3s;
}

ul:hover li:has(~ li:hover):before {
    translate: 100% 0;
    transition: .2s .2s, scale 0s .4s;
}

ul:hover li:hover~li:before {
    translate: -100% 0;
    transition: .2s .2s, scale 0s .4s;
}

.settingbox{
    display: grid;
    padding-top: 5px;
    text-decoration:underline;
width: 100%;
height: 80px;
border: #000000 solid 1px;



}

@keyframes hue {
    from {
        

    }

    to {
filter: hue-rotate(270deg);
    }
}




@keyframes svg-shadow {
    from {
        filter: drop-shadow(0 0 0 #fff) drop-shadow(0 0 0 var(--secondary-color)) drop-shadow(0 0 0 var(--secondary-color));
    }

    to {

        filter: drop-shadow(0 0 20px #fff) drop-shadow(0 0 25px #e60073) drop-shadow(0 0 40px #e60073);
    }
}


/* Keyframes für den Glow-Effekt */
@keyframes cursor-glow {
    0% {
        filter: drop-shadow(0 0 0 var(--primary-color)) drop-shadow(0 0 0 var(--secondary-color));
    }

    50% {
        filter: drop-shadow(0 0 10px var(--primary-color)) drop-shadow(0 0 15px var(--secondary-color));
    }

    100% {
        filter: drop-shadow(0 0 20px var(--primary-color)) drop-shadow(0 0 25px var(--secondary-color));
    }
}

/* Stil für den benutzerdefinierten Cursor */
.custom-cursor {
    width: 15px;
    height: 15px;
    background-color: var(--primary-color);
    /* Hauptfarbe */
    border-radius: 50%;
    /* Runde Form */
    position: fixed;
    pointer-events: none;
    /* Kein Klick möglich */
    z-index: 9999;
    /* Immer oben */
    animation: cursor-glow 1.5s infinite alternate;
    /* Glow-Animation */
}