
#news {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.news-item {
    background-color: #ffffff;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.news-item h2 {
    margin-top: 0;
    color: #333;
}

.news-item p {
    color: #666;
}
h1 {
    color: #333;
    text-align: center;
    margin: 20px 0;
}