/* General Page Layout */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
	background-color: #B10022;
	background-image: url(../images/main-court.png);
	background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
body {
  background-color: rgba(255,255,255,0.90) ;
  width: 80%;
  max-width: 1200px;
  margin: auto;
  min-height: 100vh;
}


/* Typography */
html {
    font-family: "Segoe UI Emoji", Arial, Sans-serif;
    font-size: 10px;
}
body {
    font-size: 1.8rem;	
}
h1 {
    font-size: 2.5em;
	text-align: center;
	
}
h2 {
    font-size: 1.7em;	
	clear: both;
}
h3 {
    font-size: 1.2em;	
}
h1, h2, h3 {
    color: #B10022;
    font-weight: 900;
}
a {
  text-decoration: none; /* removes the underline that links usually have */
}
a:hover, a:focus {
  text-decoration: underline; /* underline on mouseover */
  color: #B10022; /* colour change on mouseover */
}


/* Header */
header {
  background-color: rgba(248,114,2,0.70);
  text-align: center;
}

/* Navigation */
nav ul { 	
  margin: 0; 	
  padding: 0; 	
  list-style-type: none;	
  display: flex; 	
}
nav li {	
  font-size:1.9rem; 	
  display:inline; 	
  text-align:center; 	
  flex:1; 	
}
nav a {	
  padding: 3px 0; 	
  background-color: #B10022; 	
  color: white;	
  display: block;	
  font-weight: bolder;
  border: 3px outset;
  text-decoration: none;
}
nav a:hover { 	
  background-color: #F87202;
  color: #B10022;
  cursor: pointer; 	 
  text-decoration: none;
}

/* Main */
.image-right  {
  float: right;
  margin: 2px;
}
#main_image {
  max-width: 400px;
  height: auto;
  width: 35vw;
}
main {
  padding: 0 3px;
}
main li, main dd {
	margin-left: 1em;
}
aside {
  background-color: rgba(248,114,2,0.70);
  color: #B10022;
  font-size: 1.7rem;
  padding: 6px;
  margin-left: 20px;
  text-align: center;
  width: 25vw;
  border-radius: 8px;
  box-shadow: 2px 2px 4px gray;
}
.highlight {
	background-color: yellow
}
#mens {
  display: none;  
}
#womens {
  display: none;  
}
#teen {
  display: none;  
}
#kids {
  display: none;  
}
.fixture-link {
  color: blue;
  cursor: pointer;
}

 /* Footer */
footer {
  clear: both;
  font-size: 0.8em;
  text-align: center;
  background-color: rgba(248,114,2,0.70);
}

/* Smaller Screens */
@media screen and (max-width: 1100px) and (min-height: 800px) {
	body  {
		width:100%;
	}
	body  {
		width:100%;
	}
	h1 {
		font-size: 2em;
	}
	h2 {
		font-size: 1.7em;
	}
	h3 {
		font-size: 1.4em;
	}
	main {
		font-size: 3rem;
	}
	nav ul {
		display: block;
	}
	nav li {
		width: 100%;
	}
	nav a {
		font-size: 1.6em;
	}
	aside {
		font-size: 2.2rem;
		width: 90%;
	}
	#main_image {
		width: 70%;
		display: block;
		margin: auto;
		float: none;
	}
	footer {
		display: none;
	}
}
