<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body{
	margin: 0px;
	background-color: #F4A460;

}

#addHeader {
	width: 100%;
	height: 200px;
	background:#CD853F;
	border-bottom: 1px solid black;
	text-align: center;
}

#addHeader h2 {
	font-size: 36px;
	color: black;
	margin: 0px auto 20px auto;
	padding-top: 50px;


}
#addHeader button {
	height: 150px;
	width: 150px;
	background: black;
	color: white;
}

header {
	background:#CD853F;
	border-bottom: 1px solid black;
	position: sticky;
	position: -webkit-sticky;
	top: 0;
}

.container  {
	/*background: black;*/
	height: 200px;
	width: 100%;
	max-width: 1024px;
	margin: 0px auto;
	padding: 15px;
}

header + .container {
	background: black;
}





.container after {
	clear: both;
}






nav{ 
  /*background: black;*/
  height: 50px;
 
 }

 img {
 	height: 120px;
 	float:left;

 }

 nav {
 	/*background: orange;*/
 	height: 50px;
 	float: right;/*
 	line-height: 50;*/
 	margin-top: 30px;
 	margin-right: 30px;
 }
 /* MENU */
 ul &gt; li {

 	/*float: left;*/
 	display: inline-block;
 	height: 30px;
 	padding-top: 10px;
 }
li a {
	color: black;
	text-decoration: none;
	padding: 10px 30px;

}
li a:visited {

	color: black;
}

li a:hover{
	cursor: pointer;
	color: white;
}


li {
	width: fit-content;
	list-style: none;
	/*background: linear-gradient(0deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);*/
	position: relative;
	font-size:16px;
	color:black;
}
li:hover {
    opacity: 0.5;
    color:white;
}
li &gt; ul {
	display: none;
}
li:hover &gt; ul {
	display: block;
	position: absolute;
	left: -20px;
	top: 40px;
	z-index: 100;
	opacity: 1;
}
li:hover &gt; ul &gt; li:hover {
	opacity: 0.9;
}

li:hover &gt; ul &gt; li:hover ul {
	left: -90px;
	top: 0px;


}

.content, .sidebar {
	border:1px solid black;
	margin-top: 50px;
	min-height: 50px;

}

.wrapper {
	width: 100%;
}

.wrapper &gt; div {
	display: inline-block;
	clear: both;
	vertical-align: text-top;
}

.content {
	width: 58%;
	/*float: left;*/
	margin-left: 5%;
}

.sidebar {
	width:28%;
	float: right;
	margin-right: 5%;

}

article {
	width: 100%;
	/*border: 1px solid black;*/
}

article content {
	width: 65%;
	float:left;
}

article img {
	width:30%;
	float: right;
}
footer {
	display: block;
	width: 100%;
	height: 100px;
	text-align: center;
	padding-top: 40px;
	font-size: 36px;
	vertical-align: middle;
	background: black;
	color: white;
}
</pre></body></html>