* {
    margin: 0;
    padding: 0;
    box-shadow: none;
}

.wrap-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
.card {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    width: 400px;
    transition: .4s ease-in-out;
}
.card:hover {
    border: solid 3px #629eff;
    cursor: pointer;
    transform: scale(1.03);
    transition: .3s ease-in-out;
    .text-card {
        color: #005aec;
    }
}
.text-card { 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgb(109, 109, 109);

    font-size: 16px;
    margin: 1rem;
}
