body {
	overflow: hidden;
}

.heading i {
	display: flex;
	margin-top: 20px;
}

.body-content {
	width: 80%;
	padding: 0;
}

.body-content .info {
	font-size: 16px;
	text-align: center;
}

.body-content .info.about,
.body-content .info.work,
.body-content .info.skills {
	height: 100%;
	margin-top: -50%;
	font-size: 18px;
	font-weight: bold;
}

.body-content .illustration img {
	display: none;
}

.body-content .info.about span,
.body-content .info.work span {
	color: #fe3686;
	font-size: 40px;
}

.body-content .info.about ul {
	display: block;
	position: absolute;
	text-align: center;
	width: 90%;
}

.body-content .info.about ul li {
	text-decoration: underline;
}

.body-content .info.work ul li {
	text-align: left;
}

.body-content .info.about ul li a,
.body-content .info.work ul li a {
	font-size: 14px;
}

.body-content .info.skills {
	display: block;
	width: 90%;
	text-align: left;
}

.body-content .side-links {
	display: none;
}

.skill-cards {
	height: 90%;
	align-items: center;
	justify-content: center;
	margin-top: -50px;
}

.card {
	position: relative;
	width: 60%;
	height: 50px;
	margin-bottom: 2px;
	padding: 10px;
}

.card h3 {
	color: #343749;
	font-size: 16px;
	text-align: left;
	margin-left: 5px;
}

.card img {
	position: absolute;
	width: 30px;
	height: 30px;
	right: 10px;
}

.footer {
	display: block;
	position: absolute;
	text-align: center;
	width: 100%;
	bottom: 0;
	padding: 10px 20px;
}

.footer .social-links a i {
	margin-bottom: 10px;
}

.modal-container {
	background-color: rgba(52, 55, 73, 1);
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.modal-container.show-modal {
	display: block;
}

.modal {
	position: absolute;
	overflow: hidden;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 400px;
	text-align: center;

	animation-name: modalopen;
	animation-duration: 1s;
}

.modal-content {
	padding: 20px;
}

.modal-content ul li {
	margin-bottom: 50px;
	font-size: 20px;
	list-style-type: none;
	text-align: left;
	padding: 0 30px;
}

.modal-content ul li a {
	text-decoration: none;
	color: #a3a29d;
	transition: all 0.3s ease;
}

.modal-content ul li a:hover {
	color: #fe3686;
}

.modal-content ul li a.active {
	color: #fcfaf1;
}

.close-btn {
	background: transparent;
	font-size: 25px;
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	padding: 30px;
	cursor: pointer;
	outline: none;
}

.close-btn i {
	background-color: #a3a29d;
	border-radius: 50%;
	width: 35px;
	height: 35px;
	text-align: center;
	padding: 8px;
	font-size: 20px;
}

@keyframes modalopen {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}
