.full-container{
    display: flex;
    flex-direction: column;
    /* outline: 1px purple solid; */
    align-items: center;
}

.news-container{
    /* outline: 1px purple solid; */
    display: flex;
    flex-wrap: wrap;
    width: 1320px;
    margin-bottom: 100px;

    
}

.new{
    width: 400px;
    min-height: 480px;
    height: fit-content;
    background-color: rgb(241, 241, 241);
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.new img{
    border-radius: 8px;
    width:360px;
    height: 252px;
}

.new .date{
    width: fit-content;
    background-color: #FBD9CF;
    padding: 5px;
    border-radius: 8px;
}

.new h4 a{
    color: black;
    transition: 0.2s ease;
}

.new h4 a:hover{
    color: #F35525;
}


 @media (max-width : 1220px){
    .news-container{
        width: 900px;
    }

 }

 @media (max-width : 900px){
    .news-container{
        width: 440px;

    }
 }

 @media (max-width : 400px){
    .full-container{
        scale: 0.8;
    }
}
