* {
    margin: 0;
    padding: 0;
}

header {
	position: sticky;
    top: 0;

    background: #ff7939;
    border-bottom: 1px solid black;
}


.container {
	/*background: red;*/
	width: 100%;
	max-width: 1024px;
	padding: 15px;
	margin: 0 auto;
}

.container:after{
	content: "";
	display: table;
	clear: both;
}

.logo {
    height: 70px;
    float: left;
}


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, .button:hover {
    color: white;
}

/*-----------------*/
body {
    background: linear-gradient(270deg, #fda085, #f6d365);
    font-family: "Calibri", sans-serif;
    font-weight: 500;
}
.login {
    color: white;
    font-weight: 900;
}
nav ul li:last-child {
    background: black;
    border-radius: 10px;
}
/*-----------------------*/
.add_header {
    background: #ff7939;
    border-bottom: 1px solid black;
    text-align: center;
}
.slogan {
    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;
    border: 1px solid black;
}
.sidebar {
	float: right;
}

.article {
    padding: 20px;
    margin: 10px 0;
    border: 1px solid black;
}
.article:after {
    content: "";
    display: table;
    clear: both;
}
.article_text {
    float: left;
    width: 400px;
    border: 1px solid black;                                
}
.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;
    background: grey;
    float: right;
}
/*----------------------------------*/
.heading_form {
    margin-top: 20px;
}