.card {
    width: 96%;
    height: 200px;
    border-radius: 20px;
    position: relative;
    background-color: transparent;
}

.card .chip {
    width: 40px;
    height: 30px;
    background-color: gold;
    border-radius: 5px;
}

.card .details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card .details .number {
    font-size: 18px;
    letter-spacing: 2px;
}

.card .details .visa {
    font-size: 24px;
    font-weight: bold;
}

.card .info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

.card .info .holder {
    text-transform: uppercase;
}

.card .info .expiry {
    text-align: right;
}

.message {
    text-align: center;
    margin-top: 20px;
}

.fa-calendar-days {
    font-size: 80px;
}

.message p {
    font-size: 14px;
    color: #333;
}