
.section {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.section:hover {
	cursor: pointer;
}

.kamsun {
	filter: grayscale();
	width: 200px;
	height: 200px;
	border-radius: 50%;
	border: 6px solid whitesmoke;
	box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.5);
	margin-bottom: 1rem;
	transition: filter 0.4s ease-in-out;
}

.section:hover .kamsun {
	filter: none;
}

.title {
	font-family: "Open Sans", sans-serif;
	font-size: 3rem;
	color: black;
	position: relative;
}

.title::after {
	position: absolute;
	content: "";
	width: 0%;
	height: 4px;
	background-color: black;
	left: 50%;
	bottom: -10px;
	transition: all 0.4s ease-in-out;
}

.section:hover .title::after {
	width: 100%;
	left: 0;
}
