* {
    margin: 0;
    padding: 0;
    
}

.banner{
    width: 100%;
    height: 60vh;
    background-image: url(https://platform-duic.imgix.net/app/uploads/sites/2/2020/02/20191121BvSetten_Voedselbank04-1-1125x750.jpg);
    background-size: cover;
    background-position: center;
    }

.navbar{
width: 85%;
margin: auto;
padding: 35px 0;
display: flex;
align-items: center;
justify-content: space-between;
}
.logo{
width: 120px;
cursor: pointer;
}
.navbar ul li{
list-style: none;
display: inline-block;
margin: 0 20px;
position: relative;
}
.navbar ul li a{
text-decoration: none;
color: black;
text-transform: uppercase;




}
.navbar ul li::after{
content: '';
height: 3px;
width: 0;
background: black;
position: absolute;
left: 0;
bottom: -10px;
transition: 0,5s;








}
.navbar ul li:hover::after{
width: 100%;
}

.content {
    max-width: 800px;
    margin: 20px auto;
}

.content h1 {
    color: #333;
}

.content p {
    color: #666;
    line-height: 1.5;
}

.content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 20px;
}


