* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif;
  background-color: #071121;
}

a:link {
  color: darkblue;
  text-decoration: none;
}

a:visited {
  color: darkblue;
  text-decoration: none;
}

a:hover {
  color: red;
  text-decoration: underline;
}

a:active {
  color: red;
  text-decoration: underline;
}

.video {
  border: 5px outset #5780c1;
  background-color: #7d9ccf;
  text-align: center;
  margin: auto;
  width: 80%;
  }

.stat {
  font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; 
  border: 3px outset #5780c1;
  padding: 5px;
  background-color: #7d9ccf;
  color: black;
  font-weight: normal;
  text-align: center;
  margin: auto;
  width: 40%;
  }

.side {
  position: relative;
  float: right;
  background-color: #5780c1;
  width: 10%;
}

p.footer {
  color: cyan;
  text-align: center;
}

p.data {
  color: cyan;
  text-align: center;
  font-size: 20px;
}

p.header {
  color: cyan;
  text-align: center;
  font-size: 30px;
}

img.yesterday {
  width: 80px;
  position: absolute; 
  left: 10;
  top: 0%; 
}

img.tomorrow {
  width: 80px;
  position: absolute;
  right: 10;
  top: 0%;
}

img.thumbnail {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 2px;
  width: 50px;
  opacity: 1;
  transition: opacity .4s ease-out;
  -moz-transition: opacity .4s ease-out;
  -webkit-transition: opacity .4s ease-out;
  -o-transition: opacity .4s ease-out;
}

img.thumbnail:hover {
  opacity: 0.4;
  box-shadow: 0 0 3px 2px rgba(0, 140, 186, 0.7);
}

div.head { 
       font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; 
       border-collapse: collapse; 
       width: 60%; 
       margin-left: auto; 
       margin-right: auto;
}


/* The grid: Four equal columns that floats next to each other */
.column {
  float: left;
  width: 10%;
  padding: 10px;
}


/* Style the images inside the grid */
.column img {
  opacity: 0.5; 
  transition: opacity .6s ease-out;
  -moz-transition: opacity .6s ease-out;
  -webkit-transition: opacity .6s ease-out;
  -o-transition: opacity .6s ease-out;
  cursor: pointer; 
}

.column img:hover {
  opacity: 1;
  border: 1px solid #ddd;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* The expanding image container */
.container {
  position: relative;
  display: none;
}

.container img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Expanding image text */
#imgtext {
  position: relative;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  color: yellow;
  text-align: center;
  white-space:pre;
}

/* Closable button inside the expanded image */
.closebtn {
  position: absolute;
  top: 10px;
  right: 15px;
  color: yellow;
  font-size: 35px;
  cursor: pointer;
}

#sat { 
       font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; 
       border-collapse: collapse; 
       width: 60%; 
       text-align: center;
       margin-left:auto; 
       margin-right:auto;
}
#sat td, #sat th { border: 1px solid #000; padding: 8px;}
#sat tr.dark td { font-weight: normal; color: black;} 
#sat tr.light td { font-weight: bold; color: darkblue;} 
#sat tr:nth-child(even){background-color: #7d9ccf;} 
#sat tr:nth-child(odd){background-color: #5780c1;} 
#sat tr:hover td {border: 1px solid #555;}  
#sat th { padding-top: 12px;  padding-bottom: 12px;  background-color: #1c2e4a;  color: #dae3f1;}  

h2   {color: white;text-align: center;}

.triangle-left {
	width: 0;
	height: 0;
	border-top: 25px solid transparent;
	border-right: 50px solid #7d9ccf;
	border-bottom: 25px solid transparent;
        position: absolute;
        left: 10;
        top: 45%;
}

.triangle-right {
	width: 0;
	height: 0;
	border-top: 25px solid transparent;
	border-left: 50px solid #7d9ccf;
	border-bottom: 25px solid transparent;
        position: absolute;
        right: 10;
        top: 45%;
}

.button {
  background: #071121;
  border: 2px solid  #7d9ccf;
  border-radius: 8px;
  color:  #7d9ccf;
  padding: 8px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 8px 2px;
  cursor: pointer;
  transition-duration: 0.4s;
}

.button:hover {
  background-color: #7d9ccf;
  color: #071121; 
}