   body {
			margin: 0;
			padding: 0;
			overflow: hidden;
			height: 100%; 
			max-height: 100%; 
			line-height: 1.5em;
		}
		
		#header {
		  display: flex;
		  justify-content: center;
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100px; 
			overflow: hidden; 
			background-image: linear-gradient(to bottom, darkred, black);
			font-family: 'Syne Mono';
			font-size: 40px;
		
		}
        .marquee {
            color:red;
            overflow: hidden;
            position: absolute;
            padding: 5px;
            margin: 0;
            height: 80%;
            width: 100%;
            white-space: nowrap;
            
            
        }

        .marquee p {
            position: absolute;
            width: 80%;
            height: 100%;
            margin: 0;
            line-height: 75px;
            text-align: center;
            font-size: 40px;
            transform: translateX(100%);
            animation: scroll-left 20s linear infinite;
        }

        @keyframes scroll-left {
            from {
                transform: translateX(100%);
            }

            to {
                transform: translateX(-100%);
            }
        }
		 
	  #nav {
			position: absolute; 
			top: 0; 
			left: 0; 
			bottom: 0;
			width: 100%;
			overflow: auto; /* Scrollbars will appear on this frame only when there's enough content to require scrolling. To disable scrollbars, change to "hidden", or use "scroll" to enable permanent scrollbars */
			background-image: url("images/redtile.jpg");
		}
		
		#logo {
			padding:10px;
		}
		
		main {
			position: fixed;
			top: 100px; /* Set this to the height of the header */
			left: 230px; 
			right: 0;
			bottom: 0;
			overflow: auto; 
			background-color: black;
		}
		
		.innertube {
			margin: 15px; /* Provides padding for the content */
		}
		
		p {
			color: red;
		}

		nav ul {
			list-style-type: none;
			margin: 0;
			padding: 0;
		}
		
		nav ul a {
			color: red;
			text-decoration: none;
		}
				
		@font-face {
  font-style: normal;
  font-family: 'Syne Mono';
  src: url("/Syne Mono.ttf");
}
		/*IE6 fix*/
		* html body{
			padding: 100px 0 0 230px; /* Set the first value to the height of the header and last value to the width of the nav */
		}
		
		* html main{ 
			height: 100%; 
			width: 100%; 
		}
	