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;
}

.footer {
	background-color: #1a1a1a;
	min-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%;
}

.inner-tag {
	display:block;
}

.addTag{
	padding:0px 100px 0px 100px;
	margin:20px;
	color: #bcbbc4;
	transition: .2s;
	text-decoration: none;
}

.addTag:hover{
	color: #1a1a1a;
	background: #bcbbc4;
	transition: .2s;
}

.deleteTag{
	padding:5px;
	color: #bcbbc4;
	transition: .2s;
	text-decoration: none;
}

.deleteTag:hover{
	color: #1a1a1a;
	background: #bcbbc4;
	transition: .2s;
}

input{
	display: block;
	color: #1a1a1a;
	background: #bcbbc4;
	width: 40%;
	height: 30px;
}

select{
	color: #1a1a1a;
	background: #bcbbc4;
	width: 17%;
	height: 30px;
}


textarea {
	display: block;
	color: #1a1a1a;
	background: #bcbbc4;
	width: 40%;
	height: 200px;
}

.wrapper {
	display: flex;
}

.content {
	width: 80%;
}
.sidebar {
	width: 20%;
}

.filter-text {
	color: #bcbbc4;
	font-size: 40px;
}

.sidebar {
	text-align: left;
    margin-top: 30px;
    background-color: #1a1a1a;
    margin-right: 40px;
    padding: 30px;
    border: 5px solid #bcbbc4;
}

.filters > li{
	list-style: none;
}

.filters > li > a {
	color: #bcbbc4;
	font-size: 30px;
	text-decoration: none;
	transition: .2s;
}

.filters > li > a:hover {
	text-decoration: underline;
}

.likeall-a {
	color: #bcbbc4;
}

.post {
	display: flex;
	max-width: 70%;
	min-height: 100px;
	background-color: #1a1a1a;
	margin-top: 30px;
	border: 10px solid #1a1a1a;
	color: #bcbbc4;
}

.post-img {
	width: 50%;
	height: 100%;
}

.post-img > img {
	width: 100%;
	height: 100%;
}

.post-info {
	margin-left: 20px;
	hyphens: manual;
	text-align: left;
	width: 50%;
}

.post-h {
	color: #bcbbc4;
	font-size: 35px;
}

.post-about {
	color: #bcbbc4;
	font-size: 20px;
}

.post-date {
	color: grey;
}

.post-info > a{
	color: #bcbbc4;
	font-size: 20px;
	text-decoration: none;
	transition: .2s;
}

.post-info > a:hover{
	text-decoration: underline;
}

.mainBtn {
	color: #bcbbc4;
	font-size: 20px;
	text-decoration: none;
	transition: .2s;
	background: #1a1a1a;
}

.mainBtn:hover {
	color: #1a1a1a;
	background: #bcbbc4;
	transition: .2s;
	cursor: pointer;
}

.footer > center > h1 {
	color: #bcbbc4;
	font-size: 50px;
}

@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;
	}
	.sidebar{
		display:none;
	}
	.content{
		width:100%;
	}
}