<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*RESET*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; background:transparent;} body {line-height: 1;}ol, ul{list-style:none;} blockquote, q{quotes:none;} blockquote:before, blockquote:after, q:before, q:after{content:'';content:none;} :focus{outline:0;} ins{text-decoration:none;} del{text-decoration:line-through;} table{border-collapse:collapse; border-spacing:0;}

/*MAIN*/
body { 
	font-size: 20px;
	line-height: 20px;
	font-family: Verdana;
	background: #000000;
	color: yellow;
}

a {

	color: #fb6267;
	text-decoration: none;

}

a:hover {

	color: #00adef;

}

img {

	width: 100%;
	margin: auto;
	
}

header {

	background: #000;
	width: 100%;
	height: 70px;
	position: fixed;
    padding: 0px 0px 0px 0px;
	top: 0;
	left: 0;
	border-bottom: 4px solid #000000;
	z-index: 100;

}

#logo{

	margin: 20px;
	float: left;
	width: 40px;
	height: 40px;
	background: url(../images/crown.jpg) no-repeat center;
	display: block;

}

nav {

	float: right;
	padding: 20px;	
	
}

#menu-icon {

	display: hidden;
	width: 40px;
	height: 40px;
	background: #000000 url(../images/menu-icon.png) center;

}

a:hover#menu-icon {

	background-color: #444;
	border-radius: 0px 0px 0 0;

}

ul {

	list-style: none;

}

li {

	display: inline-block;
	float: left;
	padding: 10px 10px 0px 10px;

}

section {

	margin: 80px auto 40px;
	max-width: 1500px;
	position: relative;
	padding: 20px

}

h1 {

	font-size: 2em;
	color: #2262AD;
	line-height: 1.15em;
	margin: 20px 0 ;

}

p {

	line-height: 1.45em;
	margin-bottom: 20px;

}

.topnav {
  overflow: hidden;
  background-color: #000000;
  color: white;
  font: bold;
  padding: 0px 0px 0px 0px;
}

.topnav:hover {
	font-family: Verdana;
	color: #6df8fa;
	font-size: 20px;
	font: bold;
	text-decoration: none }

.topnav a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 0px 0px 0px 0px;
  text-decoration: none;
  font-size: 20px;
  font: bold;
}

.active {
  background-color: #8b65ba;
  color: white;
}

.topnav .icon {
  display: none;
}

.dropbtn {
    font-size: 22px;    
    border: none;
    outline: none;
    color: white;
    padding: 0px 0px 0px 0px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.dropbtn a{
    font-size: 20px;    
    border: none;
    outline: none;
    color: white;
    padding: 0px 0px 0px 0px;
    background-color: #000000;
    font-family: Verdana;
    margin: 0;
}

.dropdown {
    float: left;
    overflow: hidden;
    font-size: 20px;    
    border: 0;
    outline: 0;
    color: #000000;
    padding: 0px 0px;
    background-color: #000000;
    font-family: Verdana;
    margin: 0;
}


.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown:hover {
  background-color: #000000;
  color: white;
}

.dropdown-content a:hover {
    background-color: #bbbbbb;
    color: black;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/*MEDIA QUERY*/
@media only screen and (max-width : 640px) {

	header {

		position: absolute;

	}

	#menu-icon {

		display:inline-block;

	}

	nav ul, nav:active ul { 

		display: none;
		position: absolute;
		padding: 20px;
		background: #000;
		border: 0px solid #000000;
		right: 20px;
		top: 60px;
		width: 50%;
		border-radius: 0px 0px 0px 0px;

	}

	nav li {

		text-align: left;
		width: 100%;
		padding: 0px 0px 0px 0px;
		margin: 0;

	}

	nav:hover ul {

		display: block;

	}</pre></body></html>