* {
	margin: 0;
	padding: 0;
}

body {
	background: linear-gradient(0deg, blue, white, LightYellow);
	font-family: "Calibri", sans-serif;
	font-weight: 500;
}

header {
	background: white;
	border-bottom: 2px solid black;
	position: sticky;
	top: 0;
}

.container {
	/*background: red;*/
	width: 100%;
	max-width: 1024px;
	padding: 15px;
	margin: 0 auto;
}

.container:after{
	content: "";
	display: table;
	clear: both;
}

img {
	height: 100px;
	float: left;
	border-radius: 10px;
}

nav {
	float: right;
	/*background: orange;*/
	/*height: 50px;
	width: 100px;*/
}

nav li {
	display: inline-block;	
}

nav a {
	text-decoration: none;
	line-height: 70px;
	font-size: 25px;
	margin: 0 10px;
	color: black;
}

a:hover, .bottom:hover;{
	color: white;
}

.login {
	color: white;
	font-weight: 900;
}

nav ul li{
	background: black;
	border-radius: 10px;
}

a {
	text-decoration: none;
}

.add_header{
	background: white;
	border-bottom: 2px solid black;
	text-align: center;
}

.solgan {
	font-size: 40px;
	font-family: sans;
	font-style: italic;
	color: black;
	margin: 50px 0;
}

.button {
	background: black;
	font-size: 20px;
	width: 150px;
	text-align: center;
	padding: 15px;
	margin: 0 auto;
	color: white;
	border-radius: 5px;
	margin-bottom: 50px;
	font-weight: 900;
	display: inline-block;

}

.articles {
	float: left;
	width: 65%;
	padding: 10px;
}

.sidebar {
	float: right;
}

.article {
	padding: 20px;
	margin: 10px 0;
}

.article:after {
	content: "";
	display: table;
	clear: both;
}

.article_text {
	float: left;
	width: 400px;
	
}

.heading {
  font-size: 40px;
}

.desc {
	font-size: 20px;
	color: rgba(0, 0, 0, 0.9);
}

.date {
	font-size: 15px;
	color: rgba(0, 0, 0, 0.9);
	margin-top: 5px;
}
.article_img {
	height: 150px;
	width: 150px;
	float: right;
}
.body1 {
	background: white;
	font-family: "Calibri", sans-serif;
	font-weight: 500;
}
.body2 {
	background: white;
	font-family: "Calibri", sans-serif;
	font-weight: 500;
}