*{
	padding: 0;
	margin: 0;
}

body{
	background-color: #303030;
}



header{
	width: 100%;
	height: 100px;
	background-color: #303030;
}

.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;
}

.main-img{
	width: 100%;
	height: 50%;
	border-top: 100px solid #1a1a1a;
	border-bottom: 100px solid #1a1a1a;
}

.main-img > img{
	width: 100%;
	height: 100%;
}

.content {
	background-color: #303030;
	width: 100%;
}

.about-me {
	margin-left:100px;
	margin-right:100px;
	margin-top:50px;
}

.about-me > h1 {
	display: block;
	color: #bcbbc4;
	font-size: 60px;
}

.about-me > p {
	text-align:left;
	color: #bcbbc4;
	font-size: 20px;
}

.last {
	margin-top: 100px;
}

.last > .last-vid > iframe {
	border: 20px solid #1a1a1a;
	margin-top: 50px;
	margin-left: 10px;
}

.last > h1{
	display: block;
	color: #bcbbc4;
	font-size: 60px;
}

.music {
	margin-top: 100px;
	max-width: 60%;
}

.foroverflow-music {
	overflow: auto;
	max-height: 500px;
}

.music > h1{
	display: block;
	color: #bcbbc4;
	font-size: 60px;
}

.inner-music {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

.music-panel {
	width: 100%;
}

.music-panel > audio{
	width: 100%;
}

.nameofmusic {
	display: block;
	color: #bcbbc4;
	font-size: 30px;
	margin-top: 10px;
	width: 40%;
}

.projects {
	margin-top: 100px;
}

.inner-projects {
	display: flex;
	justify-content:center;
}

.projects-overflow > h3{
	color: #bcbbc4;
}

.projects-overflow {
	max-height: 800px;
	overflow: auto;
	max-width: 60%;
}

.proj-block {
	max-width: 250px;
	min-height: 300px;
	color: #1a1a1a;
	background-color: #bcbbc4;
	border: 20px solid #bcbbc4;
	transition: .2s;
	margin: 20px;
}

.proj-block > p {
	font-size: 17px;
}

.proj-block > a {
	color: #1a1a1a;
	font-size: 30px;
	transition: .2s;
	text-decoration: none;
}

.proj-block > a:hover {
	font-size: 40px;
	transition: .2s;
}

.proj-block > img{
	width: 100%;
	height: 150px;
}

.projects > h1{
	display: block;
	color: #bcbbc4;
	font-size: 60px;
}

.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){
	.main-img{
		display: none;
	}
	.last > h1{
		font-size: 40px;
	}
	.last > .last-vid > iframe {
		zoom: 70%;
	}
	header{
		height: 400px;
	}
	.menu{
		display:block;	
	}
	.footer{
		width: 100%;
    	zoom: 70%;
	}
}

@media screen and (max-width: 640px){
	.logo{
		display: block;
		float: none;
	}
	.last{
		width: 100%;
	}
	.inner-projects{
		display: block;
	}
}