*{
	margin: 0;
	padding: 0;
}
a{
	text-decoration: none;
}
body{
	background: linear-gradient(270deg, #fda085, #f6d365);
	font-family: "Calibri";
}
header{
	position: sticky;
	top: 0;
	background: #ff7939;
	border-bottom: 1px solid black;
}
.add_header{
	background: #ff7939;
	border-bottom: 1px solid black;
	text-align: center;
}
.slogan{
	font-size: 40px;
	font-style: italic;
	margin: 50px 0;
}
.button{
	background: black;
	width: 150px;
	margin: 0 auto;
	font-size: 20px;
	color: white;
	padding: 15px;
	border-radius: 5px;
	font-weight: 900;
	margin-bottom: 50px;
}
.container{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 8px;
}
.container:after{
	content: "";
	display: table;
	clear: both;
}
.logo{
	height: 70px;
	float: left;
}
nav{
	float: right;
}

nav li{
	display: inline-block;
}
nav a{
	font-size: 20px;
	color: black;
	line-height: 70px;
	margin: 0 10px;
}
nav ul li:last-child{
	background: black;
	border-radius: 10px;
}
textarea{
	width: 700px;
	height: 400px;
}
.login{
	color: white;
	font-weight: 900;
}
a:hover{
	color: white;
}
.articles{
	float: left;
	width: 65%;
	padding: 10px;
}
.article{
	padding: 20px;
}
.article:after{
	content: "";
	display: table;
	clear: both;
}
.article_text{
	float: left;
	width: 500px;
}
.heading{
	font-size: 40px;
}
.desc{
	font-size: 20px;
	color: rgba(0, 0, 0, 0.9);
}
.date{
	font-size: 15px;
	margin-top: 5px;
	color: rgba(0, 0, 0, 0.9);
}
.article_img{
	float: right;
	width: 120px;
	height: 120px;
}
.article_img > img{
	width: 100%;
	height: 100%;
}
.sidebar{
	float: right;
	width: 35%;
	margin-top: 50px;
	margin-left: 20px;
}