#projects .card .card-head {
    display: none;
}
#stickySideBar .toc {
    display: none;
}
figure {
    margin-left: auto;
    margin-right: auto;
    border: 1px white solid;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    width: fit-content;
    align-items: center;
}
figure > figcaption p {
    margin-bottom: 0.2em;
    font-style: italic;
    font-size: small;
}
figure > figcaption p:last-child {
    margin-bottom: 0;
}
#hero .image img {
    /* Somewhat hacky preload, but at least it's in the right place */
    background: url('/avatar-tongue.png') no-repeat -9999px -9999px;
}
#hero .image img:hover {
    content: url('/avatar-tongue.png');
    filter: none!important;
    cursor: default!important;
}
#gallery-page .card {
    z-index: 0;
    background-color: rgba(255, 255, 255, 0.3);
    transition: z-index 0.2s step-end, transform 0.2s linear;
}
#gallery-page .card:hover {
    transform: scale(1.5);
    z-index: 100;
    transition: z-index 0.2s step-start, transform 0.2s linear;
}