body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: black;
    color: #333;
}

header {
    background-color: #BCD2EE;
    color: black;
    padding: 20px 0;
    text-align: center;
}

.logo h1 {
    margin: 0;
    font-size: 2.5em;
}

.logo p {
    margin: 5px 0 0;
    font-style: italic;
}

main {
    padding: 20px;
}

.articles-section {
    background-color: #BCD2EE;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.articles-section h2 {
    margin-top: 0;
    text-align: center;
}

#articlesList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.article-item {
    background-color: #6C7B8B;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.article-item h3 {
    margin: 0;
}

.article-item p {
    margin: 10px 0;
}

.article-item a {
    color: white;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.article-item a:hover {
    color: #b3d9d9;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #BCD2EE;
    color: black;
    position: fixed;
    width: 100%;
    bottom: 0;
}