body {
	margin: 0;
	font-family: Arial, sans-serif;
}

#navbar {
	background-color: #333;
	overflow: hidden;
	position: fixed;
	top: 0;
	width: 100%;
	height: 3em;
	font-size: 1em;
	z-index: 999;
}

#navbar ul {
	display: flex;
	justify-content: flex-end;
}

#navbar ul li {
	list-style-type: none;
}

#navbar ul li a {
	text-decoration: none;
	color: white;
	display: block;
	padding: 0 1.5em;
	text-align: center;
}

#navbar ul li a:hover {
	color: burlywood;
}

main {
	padding-top: 3em;
}

section {
	padding-top: 3em;
}

#welcome-section {
	background-color: burlywood;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

#welcome-section h1 {
	color: black;  
	font-size: 3em;
}

#welcome-section p {
	color: #333;
	font-size: 2em;
}

#welcome-section p span {
	color: red;
}

#projects {
	background-color: purple;
 	color: white;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.project-items {
	display: flex;
	justify-content: center;
	padding: 6em 0;
	gap: 4em;
}

.project-tile a p {
	color: white;
	text-align: center;  
}

#profile-link {
	color: white;
}

#contact-section {
	background-color: burlywood;
	font-size: 2em;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

footer {
	background-color: #333;
	color: white;
	margin-top: -1em;
	padding-right: 1em;
	height: 3em;
	display: flex;
	align-items: center;
	justify-content: right;
}

@media screen and (max-width: 700px) {

	#projects {
		height: auto;
	}

	.project-items {
		flex-wrap: wrap;
	}

	#profile-link {
		display: block;
		margin-bottom: 6em;
	}

}

@media screen and (max-width: 500px) {

	#projects {
		height: auto;
	}

	.project-items {
		flex-direction: column;
	}

}