@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500&display=swap');

h1 {
    font-family: 'Cormorant Garamond', serif;

    font-size: 58px;

    line-height: 1;

    font-weight: 600;

    color: #f8fafc;

    margin-bottom: 25px;
}

.description {
    color: #cbd5e1;

    font-size: 15px;

    line-height: 1.7;

    margin-bottom: 40px;
}

.counter-box {
    padding: 30px;

    border-radius: 18px;

    background: rgba(2, 6, 23, 0.7);

    border: 1px solid rgba(96,165,250,0.15);
}

.counter-label {
    font-size: 12px;

    letter-spacing: 2px;

    color: #60a5fa;

    margin-bottom: 15px;
}

#visitor-count {
    font-family: 'Cormorant Garamond', serif;

    font-size: 72px;

    font-weight: 600;

    color: white;
}

@media(max-width: 600px) {

    .container {
        width: 90%;
        padding: 40px 30px;
    }

    h1 {
        font-size: 42px;
    }

    #visitor-count {
        font-size: 56px;
    }
}