.svgImg {
    min-width: 100px;
    max-width: 200px;
    max-height: 200px;
}

.display .svg-download-btn {
    text-align: center;
    white-space: nowrap;
}

.display .svg-download-btn::after {
    content: "DOWNLOAD SVG";
    position: absolute;
    top: 50%;
    justify-self: center;
    padding: 0.4em 1em;
    background-color: yellowgreen;
    color: white;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    transition: all 0.5s;
}

.display > div:hover .svg-download-btn::after {
    top: calc(50% - 1em);
    opacity: 1;
}

.display {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5em;
}

.display > div {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
    width: 100%;
    cursor: pointer;
}

.choose-csh-btn {
    display: inline-block;
    margin-top: 1em;
    padding: 1em;
    border-radius: 1em;
    background: seagreen;
    color: white;
    font-family: sans-serif;
    font-weight: bold;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.choose-csh-btn:hover {
    background: lightseagreen;
}

form.upload-csh {
    display: flex;
    justify-content: center;
}


@media (max-width: 900px) {
    .display {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .display {
        grid-template-columns: 1fr;
    }
}