.contentblok {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
 	position: relative;
	margin-top: 40px;
	margin-bottom: 40px;
	border-radius: 10px;
	color: black;
	padding: 10px;
}

.contentblok h2{
	color: black;
	margin-bottom: 20px;
}

.contentblok p{
	font-weight: 100;
	padding-right: 40px;
}

.contentblok img{
	max-width: 540px;
	height: auto;
	border-radius: 10px;
}

@media (max-width: 800px) {
  .contentblok {
	flex-direction: column;
}
  .contentblok img {
	width: 100%;;
}
	.contentblok p {
		padding-right: 0px;
	}
}