:root {
    font-size: 16px;
    color: #333;
    --primary-color: #62bf28;
}

a {
    color: var(--primary-color);
    cursor: pointer;
    text-decoration: underline;
}

.news-title {
    font-size: 24px;
    text-align: center;
    margin-top: 3em;
}

.news-date {
    font-size: 14px;
    color: #b0b0b0;
    text-align: center;
    margin: 20px 0;
}

.news-main {
	min-height: 70vh;
    max-width: 900px;
    margin: auto;
}


@media (max-width:768px) {
    :root {
        font-family: 14px;
    }

    .news-title {
        font-size: 20px;
    }

    .news-date {
        font-size: 13px;
    }
}

@media (max-width:576px) {
    :root {
        font-size: 13px;
    }

    .news-title {
        font-size: 18px;
    }

    .news-date {
        font-size: 12px;
    }
}