#news{
    /* Center the news section */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent-color); /* Dark background to blend with the main part of the container */
}

.news-item {
    /* looks like a sheet of paper */
    background-color: var(--secondary-color); /* Light background for contrast*/
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    margin: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    width: 60%;
}

@media screen and (max-width: 768px) {
    .news-item {
        width: 100%; /* Make it wider on smaller screens */
        margin: 0px;
    }
    
}