header{
	width: 100%;
	height: 100px;
	background-color: #303030;
}

*{
	margin: 0;
	padding: 0;
}

body{
	background-color: #303030;
}

h4 {
	color: #bcbbc4;
}

.separator{
	width: 100%;
	height: 100px;
	background-color: #1a1a1a;
}

.logo {
	float: left;
	width: 80px;
	height: 80px;
	margin: 10px;
}

.logo > a > img{
	width: 100%;
	height: 100%;
}


.menu {
	display: flex;
	float: right;
	margin-right: 20px;
}

.menu > li {
	list-style: none;
	margin-top: 40px;
	margin-right: 10px;
}

.menu > li > a {
	color: #bcbbc4;
	padding: 20px;
	font-size: 20px;
	text-decoration: none;
	transition: .2s;
}

.menu > li > a:hover {
	color: #1a1a1a;
	background: #bcbbc4;
	transition: .2s;
}

.content {
	width:100%;
	height:100%;
	display:flex;
}

.projects{
	width:30%;
}

.about-project{
	width:70%;
	min-height:600px;
	margin-top:40px;
	border: 5px solid #bcbbc4;
}

.about-project > h1{
	text-align:center;
	color: #bcbbc4;
	font-size: 80px;
	padding:10px;
}

.about-project > .info{
	display:flex;
} 

.about-project > .info > img{
	padding:10px;
	width:50%;
}

.about-project > .info > p{
	color: #bcbbc4;
	hyphens: manual;
	font-size:20px;
	padding:10px;
	width:50%;
}

.about-project > a {
	display:block;
	color: #bcbbc4;
	padding: 20px;
	font-size: 20px;
	text-decoration: none;
	transition: .2s;
}

.about-project > a:hover {
	color: #1a1a1a;
	background: #bcbbc4;
	transition: .2s;
}

.inner-projects {
	margin-right: 20px;
	margin-top:40px;
}

.inner-projects > li {
	list-style: none;
	margin-right: 10px;
}

.inner-projects > li > a {
	display:block;
	color: #bcbbc4;
	padding: 20px;
	font-size: 20px;
	text-decoration: none;
	transition: .2s;
}

.inner-projects > li > a:hover {
	color: #1a1a1a;
	background: #bcbbc4;
	transition: .2s;
}

.footer {
	background-color: #1a1a1a;
	height: 300px;
	margin-top: 20px;
}

.footer > h4 {
	text-align: center;
	color: #bcbbc4;
	font-size: 15px;
	margin-top: 20px;
}

.footer-menu {
	display: flex;
	justify-content:center;
}

.footer-menu > li {
	list-style: none;
	margin-top: 40px;
	margin-right: 10px;
}

.footer-menu > li > a {
	color: #bcbbc4;
	padding: 20px;
	font-size: 20px;
	text-decoration: none;
	transition: .2s;
}

.footer-menu > li > a:hover {
	color: #1a1a1a;
	background: #bcbbc4;
	transition: .2s;
}

.socials {
	width: 100%;
	display: flex;
	margin-top: 20px;
	margin-left: -20px;
	justify-content:center;
}

.telegram {
	display: flex;
	width: 130px;
	height: 45px;
	margin-top: 10px;
	margin-left: 0px;
	text-decoration: none;
}

.telegram > img {
	width: 100%;
	height: 100%;
}

.telegram > p {
	text-decoration: none;
	color: #bcbbc4;
	padding-left: 10px;
	font-size: 20px;
	width: 100%;
}

@media screen and (max-width: 1200px){
	
	.socials > .telegram{
		margin-left: 0px;
	}
	body{
		zoom: 70%;
	}
}

@media screen and (max-width: 750px){
	header{
		height: 400px;
	}
	.menu{
		display:block;	
	}
	.footer{
		width: 100%;
    	zoom: 70%;
	}
}

@media screen and (max-width: 640px){
	.logo{
		display: block;
		float: none;
	}
}