#cards {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    width: 300px;
    width: 300px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 0.1s ease-in-out;
    border-top: 3px solid #2a008b;
}

.card:hover{
    transform: scale(1.1);
    transition: 0.5s;
    cursor: pointer;
}