body {
    background: #f2fff7;
    font-family: "Inter", sans-serif;
}

header {
    background: #c5ffcf;
    text-align: center;
    padding: 20px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px;
}

.stat-box {
    background: white;
    padding: 24px;
    border-radius: 14px;
    border: 1px solid #aceab5;
    width: 260px;
    text-align: center;
    transition: 0.3s;
}

.stat-box:hover {
    transform: scale(1.05);
}
