.divImg {
    width: 60px;
    border-radius: 50%;
    overflow: hidden;
    /*esconde o conteúdo excedente*/
    border: 2px solid rgb(9, 149, 9);
}

img {
    width: 60px;
}

.card {
    text-align: center;
    min-width: 200px;
    height: 300px;
    border: 2px solid rgb(9, 149, 9);
    border-radius: 10px;
    padding: 10px;
    background-color: rgba(13, 174, 13, 0.434);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    flex: 1;
}

.card:hover {
    transform: translateX(-100px);
    transform: translateY(-100px);
    cursor: pointer;
}

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


@media screen and (orientation: portrait) {
    .card {
        border: none;
    }
    .card {
        background-color: red;
    }
}
