
body {
    font-family: Arial, sans-serif;
    background-image: url('../images/pattern.png');
    background-repeat: repeat;
    background-color: #e6fff2;
    margin: 0;
    padding: 0;
}

.banner {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.navbar {
    background-color: #2ecc71;
    color: white;
    padding: 10px;
    text-align: center;
}

.news-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 15px;
    justify-content: center;
}

.news-card {
    width: 300px;
    border: 1px solid #ccc;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.news-card .content {
    padding: 10px;
}

.footer {
    background-color: #2ecc71;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}
