body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #222;
    color: #fff;
}

.news-feed {
    max-width: 800px;
    margin: 50px auto;
}

.news-item {
    border: 1px solid #66c2ff;
    border-radius: 8px;
    margin-bottom: 30px; /* Increase margin for more space between items */
    padding: 30px; /* Increase padding for more space inside the box */
    background-color: #0a0a0a;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.5s ease;
}

.news-item:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    transform: scale(1.02);
    border-color: #ff6aff;
}

.news-title {
    color: #66c2ff;
    cursor: pointer;
    transition: color 0.5s ease;
}

.news-title:hover {
    text-decoration: underline;
    color: #ff6aff;
}

.news-date {
    color: #888;
    font-size: 14px;
}

.news-content {
    color: #ccc;
    margin-top: 10px;
}

.news-title a {
    color: inherit;
    text-decoration: none;
}

.news-title a:hover {
    text-decoration: underline;
}
