#title {
	display: flex;
	justify-content: center;
	background-image: linear-gradient(rgb(20,20,20), rgb(41, 43, 53));

	font-size: 2.5em;
	font-family: 'Playfair Display SC';
	font-weight: normal;
	text-shadow: -2px 2px #000;

	@media all and (min-width: 0px) and (max-width: 850px) {
		padding-top: 50px;
	}
	@media all and (min-width: 850px) {
		padding-top: 0px;
	}
}
#services-list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background-color: rgb(41, 43, 53);
}
#services-list .service {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 160px;
	color: white;
	background-color: rgb(28283a);
	border: rgb(110, 117, 128) 2px solid;
	border-radius: 30px;
	margin-block: 10px;
	margin-inline: 10px;
	padding-inline: 30px;
	padding-block: 10px;
	
	text-decoration: none;
	transition: border-color 0.3s, background-color 0.3s, font-weight 0.3s;

	@media all and (min-width: 0px) and (max-width: 850px) {
		width: 90%;
	}
	@media all and (min-width: 850px) {
		width: 40%;
	}
}
#services-list .service .service-title {
	text-decoration: none;
	transition: text-decoration 0.5s;

	font-size: 1.8rem;
	margin-bottom: 20px;
}
#services-list .service .service-content {
	font-size: 1.5rem;
}
#services-list .service:hover {
	background-color: #332d23;
	border-color: #ffbb00;
}
#services-list .service:hover .service-title {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-decoration-color: rgb(255, 255, 255);
}

#contact-container {
	background-image: linear-gradient(rgb(41, 43, 53), rgb(50, 57, 64));
}
