.item {
    display: inline-flex;
    flex-direction: column;
    width: 29%;
    aspect-ratio: 1/1;
    text-align: center;
    border-radius: 10px;
    border: 4px solid var(--highlight-color);
    cursor: pointer;
    margin: 15px;
    margin-right: 0px;
}

.item .itemLogo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.item .itemLogo img {
    width: 50%;
    height: auto;
    transition: width 0.3s ease;
}

.item .itemTitle {
    font-size: medium;
    padding: 10px;
}

.item:hover .itemLogo img {
    width: 60%;
}
