.newsItem a{
    text-decoration: none;
}

.itemOne:hover, .itemTwo:hover, .itemThree:hover {
    transform: scale(0.9);
    z-index:500;
    cursor: pointer;
}

.newsItem .itemOne, .newsItem .itemTwo, .newsItem .itemThree {
    height: 40vh;
    background-size: cover;
    background-position: center center;
    border: 1px black solid;
    transition: transform 0.4s ease;
    background-color: whitesmoke;
}

.newsItem .textBanner {
    height: 10vh;
    margin-top: 30vh;
    background-color:rgba(0,0,0,0.2);
    color:whitesmoke;
    padding-left: 1vw;
    padding-right: 1vw;
}

.newsItem:hover .textBanner {
    background-color:rgba(0,0,0,0.8);
    color:white;
}

.newsItem .noHover:hover{
    transform: unset;
}

.newsItem .itemOne {
    background-image: url('../images/news1.png');
    background-color:rgb(240, 153, 48);
}
.newsItem .itemTwo {
    background-image: url('../images/news2.png');
    background-color:rgb(73, 106, 156);
    
}
.newsItem .itemThree {
    background-image: url('../images/news3.png');
    background-color:bisque;
    
}