body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.project-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
}

.project {
    border: 2px solid #ccc;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s;
}

.project:hover {
    transform: scale(1.05);
}

.project img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.project h2 {
    margin: 10px 0;
}

.project a {
    display: block;
    padding: 10px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px;
}

.project a:hover {
    background-color: #0056b3;
}

.news-feed {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.news-item {
    margin-bottom: 10px;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.news-item:last-child {
    border-bottom: none;
}