@font-face {
    font-family: 'rubik-lightitalic';
    src: url('../fonts/rubik-lightitalic.woff2') format('woff2'),
         url('../fonts/rubik-lightitalic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'amble-regular';
    src: url('../fonts/amble-regular.woff2') format('woff2'),
         url('../fonts/amble-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}



.playerimage{
  border-radius:80px;
  background-color: white;
}

h2{
    text-align-last: left;
    padding-left:41px;
    font-size:27px;
}

hr{
    height:0;
}

/* Mobile Layout: 480px and below. */
html, body {
  box-sizing: border-box;
  height: 100%;
}
body {
    font-style: normal;
    font-weight: 400;
    /*font-family: 'Montserrat', sans-serif;*/
    line-height:1.5;
    min-height: 100vh;
}


h2, h3, a {
	color: #34495e;
}
img, object, embed, video, iframe {
 max-width: 100%;
 margin-left: auto;
 margin-right: auto;
}
caption{
    font-size:40px;
    margin-bottom: 9px;
    font-family: 'amble-regular' , serif;
}


footer {
    order: 4;
    flex: 1 100%;
    padding: 5px;
    color: rgba(0,0,0,1.00);
    /*text-align: center;*/
    font-size: large;
}
footer a{
  display:block;
}
/*Container layout rules*/
#column_layout {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    width: 100%;
}
section, aside {
    padding:0.3em;
    margin: .2em;
}
#single_column{
    flex-basis:100%;
  }
/*#section_one{*/
  /*flex:1;*/
/*}*/
#section_one{
  flex:2;
}
aside{
  flex:3;
}

/*Table Rules*/

table {
    max-width: 100%;
    width: 99%;
    /*margin-left: auto;*/
    /*margin-right: auto;*/
    padding: 1%;
    border-collapse: separate;
    border-spacing: 0 10px;
}


thead {
    font-weight: bold;
}

th {
    color: royalblue;
    background-color: royalblue;
    text-align: center;
}

td, th{
      display:inline-table;
      /*width:100%;*/
      text-align: center;
      padding: 5px;
      font-size: 16px;
}

tbody{
    background-color: #f5f5f5;
}

tfoot{
    margin-top:7px;
}

.buytickets {
    color: rgb(0, 0, 0);
    border: solid 2px gold;
    border-radius:11px;
    background-color: gold;
    text-decoration: none;
    padding:15px;
    width: 190px;
    height: 55px;
    display: inline-block;
}

.flyunited {
    color: royalblue;
    border: solid 2px royalblue;
    border-radius:11px;
    background-color: white;
    text-decoration: none;
    padding:15px;
    width: 190px;
    height: 55px;
    display: inline-block;
}

tr{
    border: solid 11px black;
}

.home{
    color:royalblue;
    font-weight: 900;
    background-color: rgba(65, 105, 225, 0.14);
}

.away{
    color:rgb(0, 0, 0);
    font-weight: 900;
    background-color: rgba(0, 0, 0, 0.08);
}

.tbd{
    color:rgb(0, 0, 0);
    font-weight: 900;
    background-color: rgba(0, 0, 0, 0.58);
}

.alternate tr {
    color: rgb(0, 0, 0);
    background-color: white;
    box-shadow: 4px 4px 5px #aaaaaa;
}

.alternate tr:hover {
    background-color: #ffffff;
    color: royalblue;
}
/* ================================= 
  Media Queries
==================================== */
@media (min-width: 768px) {
	.header,.main-nav{
		display: flex;
	}
  td, th{
    display:table-cell;
  }
    
#column_layout {
    flex-direction:row;
    flex-wrap:wrap;
    height:100%;
    flex-basis:100%;
  }
  #section_one,#section_two{
    flex-basis:48%;
  }
  aside{
    flex-basis:98%;
  }
	.header {
		flex-direction: column;
		align-items: center;
		width: 80%;
		margin: 0 auto;
		max-width: 1150px;
        
	}
    header {
    order: -1;
  }
}

@media (min-width: 1025px) {
	.header {
		flex-direction: row;
		justify-content: space-between;
	}
  #section_one{
    flex-basis:34%;
  }
    #section_two{
    flex-basis:34%;
  }
  aside{
    flex-basis:26%;
  }
}