body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background: #0f0f0f;
}

header {
    background: url('images/header-bg.png') no-repeat center center/cover;
    color: black;
    padding: 40px 0;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: #010101;
    text-decoration: none;
    font-weight: bold;
}

main {
    color: #f0f0f0;
    padding: 20px;
}

.news-container {
    color: #f0f0f0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.news-item {
    background: #1f1f1f;
    padding: 4px;
    border-radius: 8px;
    width: 350px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    text-align: left;
/*    overflow: hidden;*/
/*    cursor: pointer;*/
/*    transition: transform 0.2s;*/
}

.news-item h3 {
    margin: 0;
}

.news-item p {
    font-size: 12px;
    color: #a0a0a0;
}

.news-item:hover {
    transform: scale(1.03);
}

.news-image {
    width: 100%;
    height: 90px;
    object-fit: cover;
}

.news-content {
    padding: 0px;
}

.download-button {
    display: inline-block;
    background: #8800ff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background 0.3s;
}

.download-button:hover {
    background: #6656b3;
}

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}