img {
    width: 60px;
}

.divImg {
    width: 60px;
    border: 2px solid var(--corPrimaria);
    border-radius: 50%; 
    overflow: hidden; /*Esconde o conteúdo*/
    background-color: white;
}

.card {
    min-height: 200px;
    height: 300px;
    border: 2px solid var(--corSecundaria);
    background-color: blueviolet;
    border-radius: 10px;
    flex: 1;
}

.container {
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.card:hover {
    cursor: pointer;
    transform: translateY();
    
}
