body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 20px;
}

h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.news-card {
    margin: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    height: 250px;
    cursor: pointer; 
}

.news-card:hover {
    transform: scale(1.1);
}

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

.news-card .news-content {
    padding: 10px;
    height: 10%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-card .news-content h3 {
    color: #333;
    text-decoration: underline;
    margin-bottom: 5px;
}

.news-card .news-content p {
    color: #333;
    font-size: 14px;
    font-style: italic;
    margin: 0;
}

.search-container {
    text-align: center;
    margin-bottom: 20px;
}

.search-form input[type="text"] {
    padding: 8px;
    width: 300px;
}

.search-form input[type="submit"] {
    padding: 8px 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.search-form input[type="submit"]:hover {
    background-color: #45a049;
}
