.stats-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    grid-template-rows:repeat(2,1fr);
    padding:0;
    gap:0;
    min-height:100%;
}

.stat-card{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    border-right:1px solid rgba(255,255,255,0.15);
    border-bottom:1px solid rgba(255,255,255,0.15);
    padding:40px;
}

.stat-card:nth-child(2),
.stat-card:nth-child(4){
    border-right:none;
}

.stat-card:nth-child(3),
.stat-card:nth-child(4){
    border-bottom:none;
}

.stat-card h3{
    font-family:'Playfair Display', serif;
    font-size:3rem;
    font-weight:400;
    color:white;
    margin-bottom:10px;
}

.stat-card span{
    font-size:.7rem;
    letter-spacing:3px;
    text-transform:uppercase;
    color:rgba(255,255,255,0.75);
}