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

header {
    background: #1e1e1e;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 1.5em;
}

.search-bar {
    text-align: center;
    margin: 20px 0;
}

#searchInput {
    width: 80%;
    padding: 10px;
    font-size: 1.2em;
    border-radius: 5px;
    border: none;
    background: #222;
    color: #fff;
}

.articles {
    max-width: 800px;
    margin: 20px auto;
    background: #222;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.articles h2 {
    text-align: center;
}

.articles ul {
    list-style: none;
    padding: 0;
}

.articles li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #333;
    margin: 10px 0;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.articles li:hover {
    background: #444;
}

.articles img {
    border-radius: 5px;
}
