/* Gobal Body Styles */

iframe{
	border: none;
	height: 25px;
	width: 100%;
	overflow:none;
}

body{
	background: #333333;
	background-image: linear-gradient(to bottom, #e1e1e1, #333333);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	color: #000000;
	font-size:14px;
	font-family: 'Courier New', Courier, monospace;
}
			
nav a{
	color: #ffffff;
	text-decoration: none;
	font-weight: bold;
}

nav a:hover{
	color: #ff0000;
	text-decoration: underline;
}

a{
	text-decoration: none;
	color: #000000;
	font-weight: normal;
}

a:hover{
	color: #EE0000;
}


h1{
	font-size: clamp(16px, 10vw + 1em, 5rem);
	color: #000000;
	text-shadow: #EE0000 5px 5px,
	#00EEEE -5px -5px;
	margin:0px;
	padding:0px;
}

h2{
	font-size: 1.5rem;
	color: #000000;
	text-shadow: #EE0000 1px 1px,
	#00EEEE -1px -1px;
	margin:0 0 10px 0;
	padding:0px;
}

h3{
	font-size:20px;
	margin: 0 0 10px 0;
	padding: 0;
}

h4{
	background: #000000;
	padding: 10px;
	text-align: center;
	color: #FFFFFF;
	margin: 5px 0;
}

a:hover .r{
	color: #EE0000;
}

a:hover .c{
	color: #00EEEE;
}

hr{
	border-bottom:1px solid #e1e1e1;
	border-top:none;
}

.cyan{
	border-bottom: 2px solid #00EEEE;
}

.red{
	border-bottom: 2px solid #EE0000;
}

.center{
	text-align:center;
}

ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

li {
  padding-left: 1em;
  text-indent: -1em;
}

li:before {
  content: "»";
  padding-right: 5px;
}


/* Grid Styles */

header{
	grid-area: header;
	background:none;
	text-align: center;
}
nav{
	grid-area: nav;
	font-size: 20px;
	line-height:30px;
	font-weight: bold;
	color: #ffffff;
	text-align: center;
	background: #000000;
	margin: 10px 0;
	padding: 0px;
	text-align: center;
}
main{
	grid-area: content;
	background: white;
	padding:20px;
	margin: 10px 0;
}
footer{
	grid-area: footer;
	background: white;
	padding:20px;
	margin: 10px 0 10px 0;
	font-size: 0.7rem;
	text-align: center;
}
#updates{
	grid-area: updates;
	background: white;
	padding:20px;
	margin: 10px 0;
	height: 200px;
	overflow: auto;
}

#updates ul{
	list-style:none;
}
#updates li:before{
	content: none;
}

#link{
	grid-area:linkback;
	background: white;
	padding:20px;
	margin: 10px 0 10px 0;
	height: 200px;
	
}

#link textarea{
	height: 31px;
	width: 88px;
	background: #ffffff;
	border: 1px solid #e1e1e1;
	box-sizing: border-box;
	margin: 0 auto;
	display: block;
}


/* Screen Size Responsiveness */

@media (min-width:400px) {
	nav a{
		display: block;
		margin:0px;
		padding:0px;
	}
	
	.container{
                display: grid;
                width:320px;
                margin: 0px auto 0px auto;
                grid-template-columns: 1fr;
                grid-template-rows: auto;
                grid-template-areas:
                "header"
                "nav"
                "content"
                "updates"
				"linkback"
                "footer";
            }
	
	.desktop{
		display: none;
	}
	
	.mobile{
		display: block;
	}
	
	#link{
	grid-area:linkback;
	padding:20px;
	margin: 10px 0 10px 0px;
	
}



}

@media (min-width:700px) {
	nav a{
		display:inline-block;
		padding:0 15px;

	}
	
	.container{
                display: grid;
                width:700px;
                margin: 0px auto 0px auto;
                grid-template-columns: 1fr 1fr 1fr 1fr;
                grid-template-rows: auto;
                grid-template-areas:
                "header header  header  header"
                "nav nav nav nav"
                "content content content content"
                "updates updates linkback linkback"
                "footer footer footer footer";
            }
	
	.desktop{
		display: block;
	}
	
	.mobile{
		display: none;
	}
	
	#link{
	grid-area:linkback;
	padding:20px;
	margin: 10px 0 10px 20px;
	
}
	
}




