.side-img {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4vw;
    width: 100%;
}

.side-img > img {
    height: auto;
    width: 200px;
}

@media(max-width: 820px) {

    .side-img {
        flex-wrap: wrap;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .side-img > img {
        height: 200px;
        width: auto;
    }
}

h2 {
    font-family: 'Silkscreen', sans-serif;
}

.version-entry {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #2f2f2f;
    padding: 12px;
    transition: background-color 200ms ease-in-out;
    cursor: pointer;
}

.card.info {
    padding: 4px !important;
}

@media(min-width: 341px) {
    .version-entry * {
        width: 200px;
    }
}

.version-entry:hover {
    background: var(--gray-800);
}

.version-entry img {
    height: 20px;
    width: 20px;
}

@media(max-width: 930px) {
    .version-entry {
        justify-content: center;
    }
}

@media(max-width: 340px) {

    [mh] {
        display: none;
    }
}