﻿@charset "utf-8";
/* CSS Document */
 
/* WHOLE PAGE */
.page {background-color:#990B22; width:80%; margin:auto; padding:0px;}
 
 
/* HEADER SECTION */
.logo {position:relative; width:1000;}
 
/*selected link*/
.button 
body {margin:auto;}
 
ul {list-style-type: none;
    margin:0; padding:0;
    overflow:hidden;
    background-color:black;
    position:fixed;
    top:0;
    width:1000px;}
 
li {float: left;}
 
li a {display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;}
 
li a:hover:not(.active) {
	color: black;
    background-color:#F0F73E;}
 
.active {background-color:#D40527;}
 
/* MAIN SECTION */
main {background-color:#990B22; width:60%; float:left;}
 
.post {text-align:center;
       padding:70px;color:black;
       font-size:1.2em;}
 
.post h1 {text-align:center;
		margin-top:-50px;}
 
 
 
 
/* SIDEBAR SECTION */
.sidebar {background-color:#DB092B; width:40%; float:right;}
 
.sidebar h2 {text-align:center;
             color:yellow;}
 
.words {color:white;font-size:1.1em;}
 
 
/* FOOTER SECTION */
.footer {background-color:#CCFF66; clear:both; text-align:center;}
 
 
 