#about-me {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: white;
	width: 100vw;
	min-height: 100vh;
	padding: 30px;
	border: 1px solid #a9a9a9;
}

.about-container {
	display: flex;
	flex-direction: column;
	background-color: white;
	padding: 20px;
	margin: 20px;
	width: 70%;
}

.about {
	display: flex;
	justify-content: center;
	align-items: center;
	border: solid 2px #a9a9a9;
	border-radius: 20px;
	width: 100%;
	padding: 10px;
}

.about2 {
	margin: 10px;
	padding: 10px;
	width: 100%;
}

.about-heading {
	border-bottom: 1px solid #ed2d34;
	width: 20%;
}

.about-heading span {
	color: #ed2d34;
}

.about-container h2 {
	font-size: 40px;
}

.about-container h5 {
	font-size: 20px;
}

.about-subtitle {
	padding: 10px;
}

.about-subtitle span {
	color: #ed2d34;
}

.about-para {
	padding: 10px;
}

.about-img {
	padding-top: 10px;
	padding-left: 20px;
	backface-visibility: hidden;
}

.about-img img {
	width: 300px;
	height: 420px;
	object-fit: cover;
	border-radius: 20px;
	backface-visibility: hidden;
}

.details-about {
	display: flex;
	justify-content: space-around;
	flex-direction: column;
	padding: 10px;
}

.about-details1 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.about-name h6 {
	font-size: 18px;
	color: #ed2d34;
}

.about-birth h6 {
	font-size: 18px;
	color: #ed2d34;
}

.about-email h6 {
	font-size: 18px;
	color: #ed2d34;
}

.about-phone h6 {
	font-size: 18px;
	color: #ed2d34;
}

.about-hobbies h6 {
	font-size: 18px;
	color: #ed2d34;
}

.about-license h6 {
	font-size: 18px;
	color: #ed2d34;
}

.about-record h6 {
	font-size: 18px;
	color: #ed2d34;
}

.about-location h6 {
	font-size: 18px;
	color: #ed2d34;
}

.about-lang h6 {
	font-size: 18px;
	color: #ed2d34;
}

.about-btn {
	padding-top: 20px;
}

.about-btn button {
	border: 1px solid #ed2d34;
	background-color: #ed2d34;
	color: white;
	padding: 15px;
	transition: 0.3s ease-in-out;
}

.about-btn button:hover {
	border: 1px solid #222222;
	background-color: #222222;
	color: white;
}

.about-overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 500px;
	opacity: 0;
	transition: 0.5s ease;
	object-fit: cover;
	background-color: rgba(250, 244, 244, 0.8);
	display: grid;
	place-items: center;
}

.about:hover .about-overlay {
	opacity: 1;
}
