body {
	font-family: 'IBM Plex Sans', sans-serif;
	font-size: 16px;
	background: #fff;
	color: #000;
}
.wrapper {
	width: auto;
	margin: auto;
	padding: 0 2em;
}
header {
	text-align: center;
	margin-top: 30px;
}
h1 {
	font-family: 'IBM Plex Serif', sans-serif;
	font-weight: 300;
	display: block;
	clear: both;
	width: 100%;
	text-align: center;
	font-size: 21px;
	margin: 20px 0;
}
h2 {
	font-family: 'IBM Plex Sans', sans-serif;
	font-weight: 300;
	font-size: 21px;
	margin: 15px 0;
}
h3 {
	font-family: 'IBM Plex Serif', sans-serif;
	font-weight: 300;
	width: 100%;
	font-size: 21px;
	font-family: 300;
	border-bottom: 1px solid #f9ae64;
	padding-bottom: 5px;
	margin-top: 50px;
}
h4 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 0px;
	margin-top: 15px;
}
.work i {
	font-weight: 300;
	display: block;
	font-size: 14px;
	margin-top: 5px;
}
a {
	color: #f9ae64;
	font-weight: bold;
	text-decoration: none;
}
p {
	margin-top: 10px;
	font-size: 14px;
	font-weight: bold;
}
.profile_pic {
	border-radius: 100%;
	width: 150px;
	height 150px;
}
.line {
	width: 100%;
	height: 1px;
	background: #f9ae64;
	display: block;
	margin-top: 5px;
}
.line.short {
	width: 30px;
	margin: auto;
}

.content {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    align-content: flex-start;
	gap: 20px;
}
.work {
	display: inline-block;
	border-bottom: 1px dotted #ccc;
	padding-bottom: 30px;
	width: 300px;
	text-align: center;
}
.work a {
	display: block;
}
.work img {
	width: 100%;
	display: inline-block;
}
.work:last-child {
	border-bottom: 0;
}
form {
	width: 50%;
	margin: auto;
}
form input,
form textarea {
	width: 100%;
	border: none;
	border-radius: 3px;
	padding: 10px;
	font-size: 12px;
	margin-bottom: 10px;
	box-sizing: border-box;
	border: 1px solid #f9ae64;
	font-family: 'IBM Plex Sans', sans-serif;
}
form textarea {
	height: 130px;
}
.btn {
	background: #f9ae64;
	color: #fff;
	border-radius: 3px;
	padding: 10px 20px;
	font-size: 12px;
	transition: .3s;
}
.btn:hover {
	background: #f9db64;
}
footer {
	font-size: 10px;
	margin-top: 100px;
}

@media (max-width: 768px) {
	form {
		width: 100%;
	}
	body {
		font-size: 14px;
	}
	h1,h2,h3 {
		font-size: 18px;
	}
	h4 {
		font-size: 16px;
	}
}


