* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}



.muted {
	color: grey;
}

/* START eigen code */

/* 		Kleuren 	*/
/* Zwart = color: #18171B , voor header en footer, mogelijk ook voor tekst als achtergrond te licht is */
/* Wit = color: #FFFFFF , voor gewone tekst */
/* Paars/grijs = #978897 , voor kopteksten en mogelijk achtergronden van speciale secties tekst */
/* Bruin = #594F3B , voor default achtergrond */
/* Oranje = #F3A712 , voor links */
/* Geel = #F3E012 , voor hover */

@font-face {
	font-family: 'Cheddar Gothic Sans Two';
	src: local('Cheddar Gothic Sans Two Bold Italic'), local('Cheddar-Gothic-Sans-Two-Bold-Italic'),
		url('CheddarGothicSansTwo-BoldItalic.woff2') format('woff2'),
		url('CheddarGothicSansTwo-BoldItalic.woff') format('woff'),
		url('CheddarGothicSansTwo-BoldItalic.ttf') format('truetype');
	font-weight: 700;
	font-style: italic;
}

.wrapper {
	display: flex;
	flex-direction: column;
}

header {
	background-color: #18171B;
	padding: 10px;
	color: #FFFFFF;
}

header img {
	height: 70px;
}

nav {
	display: flex;
	align-items: center;
	justify-content: space-around;
}

h1,
h2,
h3 {
	color: #978897;
	font-family: 'Cheddar Gothic Sans Two', sans-serif;
}

h1 {
	font-size: 40px;
}

h2 {
	font-size: 35px;
}

h3 {
	font-size: 25px;
}

a,
p,
label,
input,
textarea,
button,
li {
	font-family: "Outfit", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

a {
	color: #F3A712;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
	color: #F3E012;
}

main {
	background-color: #594F3B;
	color: #FFFFFF;
	flex: 1;
}

.home {
	display: flex;
	height: 100%;
}

.collage {
	display: flex;
	flex-wrap: wrap;
	flex: 0 0 60%;
	align-content: center;
}

.collage img {
	object-fit: cover;
	width: 190px;
	height: 250px;
	flex: 0 0 33.3333%;

	/* transitioneer afbeelding in 1 seconde van grootte en halve seconde voor helderheid */
	transition: width 1s, height 1s, transform 1s, filter 0.5s ease-in-out;

	/* zet afbeelding op lager niveau */
	z-index: 1;
}

.collage img:hover {
	position: relative;
	transform: scale(1.15);
	filter: brightness(130%);
	/* zet afbeelding op hoger niveau */
	z-index: 2;
}

.put-right {
	padding: 20px;
	text-align: center;
	align-content: center;
	width: 100%;
}

.put-right p {
	padding: 10px 0;
}

.overons {
	display: flex;
}

.overons img {
	flex: 0 0 30%;
	object-fit: cover;
	width: 100px;
}

.overonstext {
	border-bottom: 3px dotted #FFFFFF;
	padding-bottom: 55px;
}

.contact {
	display: flex;
	flex-direction: row;
	align-content: center;
	margin-bottom: 20px;
	padding: 10px;
	margin-top: 20px;
}

.formleft {
	margin: 0 auto;
}

.sendbutton {
	align-self: flex-end;
}

.assortiment-afb img {
	width: 600px;
	height: 700px;
	object-fit: cover;
	margin: 15px;
}

footer {
	background-color: #18171B;
	padding: 10px;
	color: #FFFFFF;
}

.btn-group button:hover {
	background-color: rgb(115, 126, 148);
}

.btn-group button {
	width: 10%;
	padding: 5px;
	margin-left: 10px;
	background-color: #3a3f48;
	border: 2px solid #3f3c36;
	cursor: pointer;
	border-radius: 15%;
	color: #ccc6ba;
}

.assortiment-content {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.assortiment {
	margin: 10px;
}

.drankenlijst {
	margin-top: 20px;
	font-size: 20px;
}

li {
	margin-left: 45px;
}

.event-content {
display:flex;
justify-content: space-between;
}

.event-content img{
	border-radius: 50%;
    width: 45%;
}

.event-text {
	width: 50%;
	text-align: end;
	margin: 10px;
}

.event-text h1 {
	margin-bottom: 20px;
}


/* EINDE eigen code */
.form-group {
	padding: 10px;
}

.form-group label {
	display: inline-block;
	width: 150px;
	cursor: pointer;
	vertical-align: top;
}

.form-group input[type=text],
.form-group textarea {
	width: 300px;
}

.form-group input[type=submit] {
	padding: 10px;
	cursor: pointer;
}