

/*======================================= NEWS FEED ============================================*/

#newsfeed-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-family: montserrat;
    font-size:24px;
    
    
    /*align-items: center;*/
    justify-content:center;
     width:100%;
    height: auto;
    min-height: 80vh;
    overflow: hidden;
}

.card {
    border: 1px solid #e0e0e0;
    padding: 16px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.card-title {
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
    
}

.card-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 16px;
}

.card-description {
    margin-bottom: 8px;
    font-size:16px;
}
