


/* Card Stuff */

#content-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#card{
    position: relative;
    width: 80vmin;
    height: 80vmin;
    display: flex;
    justify-content: center;
    align-items: center;
}

#card-ring-bg {
    position: absolute;
    background: radial-gradient(circle, rgba(0,0,0,0) 55%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0) 70%); 
    background-size: 100%;
    width: 100%;
    height: 100%;
}

.ring-element {
    position: absolute;
    margin-top: -3vmin;
    transform-origin: 0 43vmin;
    left:50%;
    display: flex;
    justify-content: center;
}



#card-ring{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: rotateZ(0deg);
    transition: .3s;
}


.ring-stuff {
    position: absolute;
    width: 15vmin;
    height: 15vmin;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: .3s;
    filter: drop-shadow(0 0 .3vmin #000);
    z-index: 5;
}

.ring-stuff:hover, .ring-stuff.selected {
    filter: drop-shadow(0 0 2vmin #000);
    scale: 1.2;
    filter: drop-shadow(-.2em -.1em 0px var(--accentColor2)) drop-shadow(.2em .1em 0px var(--accentColor1));


}

.ring-icon-text {
    opacity: 0;
    position: absolute;
    transform:translateY(5vmin);
    text-shadow: 0 0 1em #000;
    transition: .3s;
    z-index: 7;
}

.ring-stuff:hover .ring-icon-text, .ring-stuff.selected .ring-icon-text{
    opacity: 1;
    transform:translateY(7vmin);
}

.ring-stuff .icon {
    width: 10vmin;
    height: 10vmin;
    background-color: #fff;
    mask-size: 10vmin !important;
    transition: .3s;
}

.ring-stuff:hover .icon {
    animation: shake 5s linear infinite forwards;
}


.ring-stuff.selected .icon {
    animation: shake 5s linear infinite forwards;
}



#card-info-wrapper {
    position: relative;
    width: 70%;
    height: 70%;
    background-image:conic-gradient(from 135deg, var(--accentColor1) 0%, var(--accentColor2) 50%, var(--accentColor1) 100%);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#card-info {
    position: relative;
    width: 95%;
    height: 95%;
    border: solid  10px #000; 
    background-color: #333 ;
    border-radius: 100%;
    overflow: hidden;
   
}

#card-info-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-image:#000;
    filter: blur(10px);
    transition: .5s;
    background-size: cover;

}


#card-info-bg2{
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: repeating-linear-gradient(0deg, rgba(0,0,0,.5) 0px, rgba(0,0,0,.6) 5px, rgba(0,0,0,.5) 10px); 
    filter: blur(0px);
    animation: scrollBG .05s linear infinite;
    transition: .5s;
}

#card-info-text {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 3;
    font-size: 1.5em;
    user-select: none;
}

#card-info-text h1{
    margin-bottom: 0;
}


#card-info-text p{
    filter: drop-shadow(2px 2px 1px #000);
    max-width: 80%;
}

.hori-wrapper a{
    text-decoration: none;
    color: #000000;
    font-weight: bold;
}

.hori-wrapper {
    width: 80%;
    display: flex;
    justify-content:space-around;
    align-items: center;
}

.hori-wrapper * {
    background: #fff;
    padding: 1em;
    border-radius: 1em;
    transition: .2s;
}

.hori-wrapper *:hover {

    background: #ddd;
scale: 1.1;
}

#card-info-text .button{
    margin-top: .5em;
    padding: 1em;
    color: #fff;
    background-color: #fff0;
    border-radius: 1em;
    transition: all .2s, color 0s, backgrounn;
    user-select: none;
    position: relative;
    font-size: 1.5em;
    text-decoration: none;
}


#card-info-text .button div{
    margin: -1em;
    transition: .3s;
    position: absolute;
    border-radius: 1em;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image:linear-gradient( 135deg, var(--accentColor2) 0%, var(--accentColor1) 100%);
}

#card-info-text .button:hover{
    background-color: #fff;
    color: #fff;
    transform: scale(1.1);

}

#card-info-text .button:active{
    background-color: #fff;
    color: #fff;
    transform: scaleX(1.2);
}

#card-info-text .button:hover div{
    filter: blur(.25em);
    z-index: -1;

}

#card-info-text .button:active div{
    filter: blur(1em);
    z-index: -1;

}

@keyframes scrollBG {
    0% { background-position:  0 0px; }
    100% { background-position:  0 10px; }
}
