@font-face {
	font-family: regularFont;
	src: url(../font/Ubuntu-Regular.ttf);
	/* font-family: libreFont;
	src: url(../font/LibreBaskerville-Regular.ttf); */
}

body {
	margin: 0;
}

.main {
	width: 80%;
	max-width: 900px;
	margin: 0 auto;
	height: auto;
	font-family: regularFont;
	margin-top: 10px;
}

.return {
	text-decoration: none;
	color: #777;
	font-size: 20px;
	position: absolute;
	top: 22px;
	transform: translateX(-30px);
	transition: .15s ease-in-out;
}

.return:hover {
	color: black;
}

.projectTitle {
	font-size: 40px;
}

.categories {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-top: 8px;
}

.category {
	font-size: 14px;
	padding: 4px 8px;
	background-color: rgba(119, 119, 119, 0.158);
	color: #777;
	border-radius: 5px;
	margin: 0px 3px 3px 3px;
}

.photoCarousell {
	width: 100%;
	margin: 0 auto;
	margin-top: 3px;
}

.photoContainer {
	width: 100%;
	height: 470px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	transition: background-image 0.15s ease-in-out;
}

.photoSelection .dot {
	display: inline-block;
	width: 13px;
	height: 13px;
	border-radius: 10px;
	margin-left: 4px;
	margin-right: 4px;
	cursor: pointer;
	transition: background-color 0.3s ease-in-out;
}

.unactive {
	background-color: rgb(214, 213, 213);
}

.photoSelection {
	margin: 0 auto;
	display: flex;
	justify-content: flex-end;
	margin-top: 10px;
}

.active {
	background-color: rgb(165, 165, 165);
}

@media only screen and (max-width: 700px) {
	.photoContainer {
		height: 300px;
	}
}

.smallTitle {
	font-size: 13px;
	color: #777;
}

.bigTitle {
	font-size: 26px;
	color: black;
}

.description {
	margin-top: 30px;
}

.text {
	font-size: 18px;
	color: #777;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 20px;
}

.links {
	margin-top: 30px;
}

.flexContainer {
	position: relative;
	display: flex;
	justify-content: center;
	flex-direction: row;
	margin-top: 20px;
	flex-wrap: wrap;
}

.website {
	width: 100%;
	max-width: 400px;
	height: 120px;
	background-color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	border-radius: 5px;
	margin: 10px;
	border: 0.4px solid rgba(192, 192, 192, 0.473);
	cursor: pointer;
}

.flexContainer a {
	text-decoration: none;
	color: #777;
}

.flexContainer img {
	margin: 10px;
	cursor: pointer;
	max-width: 400px;
	width: 95%;
}