#logo{
	height: 150px;
	float: left;
}
header{
	background-color: red;
	height: 200px;
	position: sticky;
	top: 0;
}
header:after{
	clear: both;
}
.container{
	background-color: orange;
	width: 100%;
	max-width: 1024px;
}
nav{
	height: 100px;
	width: 200px;
	background-color: red;
	float: right;
}
nav li{
	display: inline-block;
}
nav li a {
	text-decoration: none;
	margin: 0 10px;
	color: whitesmoke;
	font-size: 20px;
}
nav li a:hover{
	color: gray;
}
.add-header {
	height: 170px;
	/*border: 1px solid black;*/
	text-align: center;
	background-color: orange;
	padding-top: 25px;

}
.add-header h1 {
	font-family: monospace;
	font-size: 28px;
	font-style: italic;
	font-weight: 100;
}
.add-header button {
	color: white;
	background-color: black;
	border-radius: 5px;
    font-style: bold;
    font-family: monospace;
    padding: 10px 25px;
    cursor: pointer;
}
.content{
	max-width: 1024px;
	width: 100%;
	/*border: 1px solid black;*/
	padding: 3px;
	margin: 30px auto;
}
.main-content {
	width: 65%
	/*border:1px solid black;*/
	padding: 3px;
	display: inline-block;
	float: left;
}
.sidebar{
	width: 30%;
    /*border: 1px solid black;*/
    padding: 3px;
    display: inline-block;
    float: right;
}
.preview{
	width: 95%;
	padding: 5px;
	/*border: 1px solid black;*/
	float: left     
}
.preview .new-wrapper {
	width: 65%;
	display: block;
	float: left;
}
.preview img {
	width: 30%;
	display: block;
	float: right;
}
#footer {
	width: 100%;
	clear: both;
	background-color: black;
	color: white;
	font-size: 14px;
	padding: 30px;

}
#footer .wrapp{
	max-width: 1024px;
	width: 100%;
	margin: 10px auto;
}