* {
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
}

body {
	background-image: linear-gradient(270deg, #fda085, #f6d365);
	font-family: "Calibri", sans-serif;
	font-weight: 500;
}

header {
	position: sticky;
	top: 0;
	background-color: #ff7939;
	border-bottom: solid 1px black;
}

.container {
	width: 100%;
	max-width: 1800px;
	padding: 7px;
	margin: 0 auto;
}

nav {
	float: right;
	margin-right: 100px;
}

img {
	height: 100px;
	float: left;
	margin-left: 30px;
}

.container:after {
	content: "";
	display: table;
	clear: both;
}

nav li {
	display: inline-block;
	margin: 0 5px;
}

nav a {
	margin: 0 30px;
	font-size: 20px;
	color: white;
	line-height: 100px;
}

nav > ul > li:last-child {
	background-color: black;
	border-radius: 10px;
}

a:hover {
	color: gray;
}

.menu {
	list-style: none;
}

.menu > li {
	position: relative;
	padding: 10px 0px 10px 16px;
}

.menu > li:hover {
	cursor: pointer;
	background-color: orange;
}

.sub {
	position: absolute;
	background-color: blue;
	left: 0px;
	width: 138px;
	display: none;
}

.menu li:hover ul {
	display: block;
}

.sub a {
	line-height: 40px;
}

.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;
}

.articles {
	float: left;
	width: 65%;
	padding: 10px;
}

.article {
	padding: 20px;
	margin: 10px 0;
	border-bottom: 1px solid black;
}

.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;
	color: rgba(0,0,0,0.9);
	margin-top: 5px;
}

.article_img {
	height: 150px;
	float: right;
}

.sidebar {
	float: right;
	width: 30%;
	padding: 10px;
}

.news {
	padding: 7px 0;
	font-size: 20px;
}