* {padding: 0; margin: 0};
html {width: 100%; height: 100%;}

@media (min-width: 1050px){
    #container {width: 1000px}
    #menu {width:1000px}
    #content {width:1000px}
}
@media (max-width: 1050px) and (min-width:1000px){
    #container {width: 950px}
    #menu {width: 950px}
    #content {width: 950px}
}
@media (max-width: 1000px) and (min-width: 800px){
    #container {width: 750px;}
    #menu {width: 750px}
    #content {width: 750px}
}
@media (max-width: 800px) and (min-width: 500px){
    #container {width: 450px;}
    #menu {width: 450px}
    #content {width: 450px}
}
@media (max-width: 500px){
    #container {width: 90%;}
    #menu {width: 90%;}
    #content {width: 90%;}
}

#container
{
	margin:0 auto;
	background-color: white;
}

#header 
{

	background-color: white;
	margin-top: 50px;
	height: 300px;
	letter-spacing: 3px;
	font-family: 'Roboto Mono', monospace;
	font-size: 30px;
	padding-bottom: 10px;
	border-bottom-style: solid;
	border-width: 2px;
}


#menu
{
    margin: 10px auto;
	text-align: center;
	min-height: 40px;
	background-color: white;
	font-family: 'Roboto Mono', monospace;
}

#content
{
	float: left;
	margin: 0 auto;
	background-color: white;
	min-height: 150px;
	border: 2px solid;
	border-radius: 5px;
	padding: 20px;
	font-family: 'Roboto Mono', monospace;
}


#footer
{
	color: black;
	clear: both;
	text-align: center;
	padding: 10px;
	font-family: 'Roboto Mono', monospace;
}

.option
{
    padding-bottom: 10px;
    width: 198px;
	height: 30px;
	font-size: 18px;
	border: 1px solid;
	border-color: #A71930;
}

.option:hover
{
	background-color: #00693C;
	cursor: pointer;
}

a.link
{
    width: auto;
	display: block;
	text-decoration: none;
	color: black;
	height: 15px;
    padding: 10px;
}
