h1 {
    display: flex;
    align-items: center;
    justify-content: center; 
    margin-bottom: 1.1rem;
    position: relative; 
}

.pageback {
    position: absolute;
    left: 0;
}

.pageback a, .pagenext a {
    text-decoration: none;
    color: #fafafa;
    font-size: 1.2rem;
    transition: color 0.2s;
	padding: 0 3px 0 3px;
}

.pageback a:hover, .pagenext a:hover {
    color: red;
}

.pagenext {
    position: absolute;
    right: 0;
}

.link {
	color: red;
	text-decoration: none;
}

.link:hover{
	color: blue;
	text-decoration: underline;
}

.nieuws {
	padding: 5px;
}

.bericht {
	overflow: hidden;
}

.bericht li {
    list-style-type: disc;
    padding-left: 30px;
    text-indent: -20px;
}

.foto {
	max-width: 25vh;
	height: 10vh;
	padding: 3px;
	border: 3px solid grey;
	border-radius: 8px;
	margin: 0 20px 10px 0;
	float: left;
}

.foto:hover{
    opacity: 0.5;
	filter: alpha(opacity=50);
}

.foto-container {
    margin-right: 20px; 
}

/* Optioneel: pijltjes iets groter maken voor mobiele apparaten */
@media (max-width: 600px) {
    pageback a, .pagenext a {
        font-size: 2rem;
    }
}




