

html {
  box-sizing: border-box;
  font-family: arial, helvetica, sans-serif;
  align-content: center;
  background-color: black;
  font-size: 13px;  
  text-decoration: none;    
}

*, *:before, *:after {
  box-sizing: inherit;
}

h1 {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1em;
  padding-bottom: 0;
  text-shadow: 2px 2px 2px #666;
  font-size: 300%;
  color: rgb(157,157,255);
}

h2 {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1em;
  padding-bottom: 0;
  font-size: 200%;
  color: rgb(255,255,239);
  text-shadow: 2px 2px 0px #666;
}

h3 {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1em;
  padding-bottom: 0;
  font-size: 150%;
  color: rgb(255,255,239);
  text-shadow: 2px 2px 0px #111;
}

h4 {
  margin-left: auto;   
  margin-right: auto;
  margin-bottom: 1em;
  padding-bottom: 0;
  font-size: 120%;
  color: aliceblue;  /* aliceblue? rgb(255,250,250)*/
}
h5 {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1em;
  padding-bottom: 0;
  font-size: 100%;
  color: rgb(255,255,224);
}
p {
     max-width: 100%;
    line-height: 125%;
}

header {
  background-color: black;
}

.titlehead {
  text-align: center;
}

.titlesubhead {
  position: relative;
  top: -45px;
}

.container {
  max-width: 1200px;
  background-color: darkslategray;
  color: white;
  margin: 0 auto;
}

.container > * {
	  /* border: 1px solid #000; */
  padding-left: 1.25em;
  padding-top; 1em;
  padding-right: 1.25em;
}

.container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: .625em;
}

.container > * {
  grid-column: 1 / span 12;
}
    /* unvisited link */
a:link {
  color: cyan;
}
    /* visited link */
a:visited {
  color: cyan;
}
    /* mouse over link */
a:hover {
  color: hotpink;
}
    /* selected link */
a:active {
  color: ivory;
}

img {
  max-width: 100%;
}

nav {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f00;
  background: darkslategray;
  position: sticky;  

}

nav ul {
  font-size: 1.2em;
  font-weight: 700;
  color: white;
  list-style: none;
  
  margin: 0;
  padding: 0;
 
}

nav ul li {
   margin-left: auto;
   margin-right: auto;
   text-decoration: none;
    text-align: center; 
   padding-bottom: .625em;
}

table.tableizer-table {
		font-size: 11px;
		border: 1px solid #CCC; 
			} 
.tableizer-table td {
		vertical-align: top;
		padding: 4px;
		margin: 3px;
		border: 1px solid #CCC;
	}
.tableizer-table th {
		background-color: #104E8B; 
		color: #FFF;
		font-weight: bold;
	}
article {
  margin-top: .625em;
}

.resp_iframe iframe {
  border: none;
  width: 400px;
  height: 225px;
}
.sched{
    font-size: .9em;
}

.news {
  margin-right: 1em;
}

table {
    font-size: 12px;
}

@media screen and (max-width: 420px) {
        
  .resp_iframe iframe {
    border: none;
    width: 300px;
    height: 168.75px;
     
  }
}

@media screen and (max-width: 899px) and (min-width: 421px)
    {
        
  .resp_iframe iframe {
  border: none;
  width: 400px;
  height: 225px;
}
}
@media screen and (min-width: 900px) {
        
  .resp_iframe iframe {
    border: none;
    width: 500px;
    height: 281.25px;
  }

  nav ul {
    display: flex;
    justify-content: space-between;
  }

  footer p {
    display: flex;
  }

  .content {
    grid-column: 1 / span 6;
  }

  .news {
    grid-column: 7 / span 6;
  }

  footer {
    grid-column: 1 / span 12;
    border-top: 1px solid #f00;
  }
}