/*
.ubuntu-sans-<uniquifier> {
    font-family: "Ubuntu Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
  }
*/
/* algemeen */
* {
	font-family: "Ubuntu", sans-serif;
	font-family: Georgia, "Times New Roman", Times, serif;
}
p {
	font-family: "Reddit Sans", sans-serif;
}

body {
	background-color: #8644a2;
	margin: 0;
}
.memoriam {
	background-color: lightgray;
}

h1 {
	color: #8644a2;
	text-align: center;
}
h2 {
	color: #d862bc;
	margin-top: 3rem;
}
h3 {
	color: #e59be9;
	margin-top: 2rem;
}
h4 {
	color: #d862bc;
}

a {
	text-decoration: none;
	color: #8644a2;
	font-family: "Reddit Sans", sans-serif;
}

footer {
	background-color: #d862bc;
	color: #ffebb2;
	height: 100px;
	font-family: "Reddit Sans", sans-serif;
	text-align: center;
	padding-top: 2rem;
}

main {
	max-width: 1200px;
	background-color: white;
	padding: 2rem;
	margin: auto;
}
img {
	width: 100%;
}

/* navbar*/
nav {
	background-color: #d862bc;
}
nav a {
	color: #ffebb2;
}
nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
}
nav li {
	float: left;
}

nav li a,
.dropbtn {
	display: inline-block;
	text-align: center;
	padding: 14px 16px;
}
nav li a:hover,
.dropdown:hover .dropbtn {
	background-color: #8644a2;
}

li.dropdown {
	display: inline-block;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #ffebb2;
	min-width: 160px;
	/*box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
	z-index: 1;
}

.dropdown-content a {
	color: #8644a2;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
}

.dropdown-content a:hover {
	background-color: #e59be9;
}

.dropdown:hover .dropdown-content {
	display: block;
}

/* inhoud homepage */
.info {
	border: 2px solid #8644a2;
	border-radius: 8%;
	padding: 4%;
	margin-bottom: 2rem;
}

.info img {
	border-radius: 8%;
	margin-bottom: 1rem;
}
/* huisdieren */
.profiel {
	display: grid;
	grid-template-columns: 1fr 1fr;
	text-align: left;
	gap: 2%;
	width: 100%;
}

.profielfoto {
	border-radius: 5%;
	margin-bottom: 2rem;
}

.fotos img {
	width: 23%;
}
.fotos {
	display: flex;
	justify-content: space-between;
	margin: 1rem 0px 2rem 0px;
}
.profiel p {
	margin-top: 0px;
}
/* projecten */
.project li {
	font-family: "Reddit Sans", sans-serif;
}

/* verschillende schermen */
@media (max-width: 850px) {
	.profiel {
		display: flex;
		flex-direction: column;
	}
	.fotos {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr 1fr;
		gap: 2%;
	}
	.fotos img {
		width: 100%;
	}
	nav ul {
		margin-left: 1rem;
	}
}
/*Hier moet nog iets komen met de dropdownmenu (hamburger)*/

@media (min-width: 850px) {
	main {
		width: 85%;
		max-width: 1000px;
	}
	.home {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 3%;
	}
	nav ul {
		display: flex;
		justify-content: center;
	}
}
