main {
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;

    h1 {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
        font-family: monospace;
        font-size: clamp(18pt, 5vw, 32pt);
        letter-spacing: 1px;
    }
}

.card {
    position: relative;
    width: 300px;
    height: 300px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;

    outline: 1px dashed #a79b00;

    * {
        flex-shrink: 0;
        flex-grow: 0;
    }

    h4 {
        padding: 10px;
        font-size: 14pt;
        font-weight: 500;
        font-family: monospace;
        text-align: center;
    }

    .scrollable {
        box-sizing: border-box;
        width: 100%;
        height: 202px;
        padding-bottom: 1px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        overflow: hidden scroll;
        scrollbar-gutter: stable both-edges;

        /* svg-isolate {
            margin-bottom: 35px;
        } */

        p {
            height: 500px;
        }
    }
}

.card::after {
    content: var(--load-time, "Loading...");
    position: absolute;
    bottom: 5px;
    right: 10px;
    font-family: monospace;
    font-size: 12pt;
    color: rgb(255, 255, 255);
}