content card[card-style="bubbles"] cardcontent carditem {
    position: absolute;
    border-radius: 50%;
}

content card[card-style="bubbles"] cardcontent carditem img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 10;
    border-radius: 50%;
}

content card[card-style="bubbles"] cardcontent carditem .subheading {
    position: absolute;
    text-align: center;
    z-index: 11;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    margin: 0;
    border-radius: 20px;
    padding: 10px;
    width: 70%;
    left: 15%;
    top: 20%;
    color: black;
}

content card[card-style="bubbles"] cardcontent carditem .subheading > a{
    color: black;
}

content card[card-style="bubbles"] cardcontent carditem div {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 12;
    border-radius: 50%;
    opacity: 0;
    overflow: hidden;
    padding: 15px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
    border-image: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)) 1;
    border-width: 4px;
    border-style: solid;
}

content card[card-style="bubbles"] cardcontent carditem div > ul, ol{
    margin: 5px 0 5px 15px;
}

content card[card-style="bubbles"] cardcontent carditem div:hover {
    min-height: 100%;
    height: fit-content;
    animation: blendin 0.2s forwards;
}

@keyframes blendin {
    from {
        opacity: 0;
        border-radius: 50%;
    }
    to {
        border-radius: 0;
        opacity: 1;
    }
}