.hero {
    position: relative;
    background-image: url('..//image/kerk.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 20px;
    text-align: center;
    text-shadow: 0 2px 5px rgba(217, 217, 217, 0.6);
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.6)
    );
    pointer-events: none;
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 2;
}


@media (max-width: 600px) {
	.hero {
	padding: 20px 20px;
		min-height: 65vh;
	}
}