
.cards {
    width: 100%;
    height: 85%;
    padding: 5px;
    display: flex;
    align-items: center;
}

.card {
    height: 100%;
    padding: 10px;
    margin-right: 40px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background 1s ease;
    background: linear-gradient(180deg, rgb(90, 90, 92) 0%, rgba(109,109,114,1) 0%, rgba(0,0,0,1) 100%);
}

.imgContainer {
    width: 200px;
    height: 200px;
    border-radius: 5px;
    overflow: hidden;
}

.card img {
    width: 200px;
    height: 200px;
    margin-bottom: 5px;
    box-shadow: 0 30px 30px -6px black;
    transition: all 0.5s ease;
}

.cardInfo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
    width: 100%;
    height: 20%;
    margin-top: 20px;
}

.card h3,
.card h5 {
    font-family: 'Roboto', sans-serif;
}

.card h3 {
    font-size: 13px;
}

.card h5 {
    font-size: 12px;
    color: gray;
}

.card:hover {
    background: rgb(80, 79, 79);
}

.card:hover img {
    transform: scale(1.1);
}