* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: url("Background.jpg"); */
    overflow: hidden;
}

.container-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    display: grid;
    grid-template-columns: 300px;
    grid-template-rows: 210px 210px 80px;
    grid-template-areas: "image" "text" "stats";
    font-family: 'Segoe UI', Roboto;
    border-radius: 18px;
    background: white;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.9);
    text-align: center;
    transition: 0.5s cubic-bezier(0, 0, 0, 2.5);
    cursor: pointer;
    margin: 20px;
}

.card .card-image1 {
    grid-area: image;
    background: url("img1.jpg");
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background-size: cover;
}

.card .card-image2 {
    grid-area: image;
    background: url("img2.jpg");
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background-size: cover;
}

.card .card-image3 {
    grid-area: image;
    background: url("img3.jpg");
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background-size: cover;
}

.card .card-text {
    grid-area: text;
    margin: 25px;
}

.card .date {
    color: rgb(236, 54, 227);
    font-size: 13px;
    font-weight: 500;
}

.card .card-text h2 {
    margin-top: 0;
    font-size: 28px;
}

.card .card-text p {
    color: gray;
    font-size: 15px;
    font-weight: 300;
}

.card .card-stats {
    grid-area: stats;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    background: rgb(236, 54, 227);
}

.card .card-stats .stat {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    color: white;
}

.card .card-stats .stat .value {
    font-size: 22px;
    font-weight: 400;
}

.card .card-stats .stat .value sup{
    font-size: 12px;
}

.card .card-stats .stat .type {
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
}

.card .card-stats .border {
    border-left: 1px solid rgb(150, 34, 144);
    border-right: 1px solid rgb(150, 34, 144);
}

.card:hover {
    transform: scale(1.1);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
}