/* Color Notes:
    Dark Blue: #234,
    Light Blue: #678;
    Text: #DDD; Text Hover: #FFF;
    Toggle Hover/Focus: #123;
*/

html {
  position: relative;
  min-height: 100%;
}

body {
  background-color: #89A;
  min-width: 320px;
  width: 100%;
  height: 100%;
}

.main {
  background-color: #678;
  min-width: 320px;
  max-width: 1024px;
  margin-top: 50px;
  padding-bottom: 100px;
  background: radial-gradient(circle, rgba(0,0,20,0), rgba(20,20,60,0.5));
  height: 100vh;
}



/* Begin Channel Container CSS */ 
.channel-container {
  max-width: 300px;
  margin: auto;
  margin-top: 30px;
}
.thumb-container {
  background-color: gray;
  background-color: rgba(20,20,20,0.5);
  height: 300px;
  width: 300px;
  position: relative;
}
.transparent-bg {
  position: absolute;
  height:300px;
  width: 300px;
  opacity: 0.2;
}
.thumbnail {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top:0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.shadow{
  max-width: 280px;
  box-shadow: 0 6px 8px -2px black;
}
.user-name {
  font-family: 'Press Start 2P', cursive;
}
.thumb-footer {
  background-color: #ABC;
  opacity: 0.9;
  width: 300px;
  overflow: hidden;
}
.user-name>a {
  text-decoration: none;
  color: #234;
}
.user-name>a:hover {
  color: #222;
  text-shadow: 0 0 8px rgba(0,0,0,0.5);
}
.thumb-footer .row {
  padding: 3px 5px 3px 5px;
  font-size: .8em;
}

.ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.activity {
  font-weight: 600;
}
.game {
  font-weight: 400;
}
.footer-bottom {

}
.status-msg {
  font-size: 0.9em;
  font-style: italic;
}
.led {
  display: inline-block;
  margin: 0 8px 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.led-gray {
  background-color: lightgray;
  box-shadow: #000 0 0 1px 1px, inset dimgray 0 0 4px, lightgray 0 0px 4px;
}
.led-green {
  background-color: lime;
  box-shadow: #000 0 0 1px 1px, inset darkgreen 0 0 4px, lime 0 0px 4px;
}
.led-yellow {
  background-color: gold;
  box-shadow: #000 0 0 1px 1px, inset goldenrod 0 0 4px, gold 0 0px 4px;
}
.led-red {
  background-color: red;
  box-shadow: #000 0 0 1px 1px, inset darkred 0 0 4px, red 0 0px 4px;
}
.led-blue {
  background-color: blue;
  box-shadow: #000 0 0 1px 1px, inset darkblue 0 0 4px, blue 0 0px 4px;
}
.user-status {
  white-space: nowrap;
  font-family: 'Share Tech Mono', monospace;
}
/* End Channel Container CSS */ 




.text-shadow-white {
  color: #DDD;
}
.text-shadow-white:hover,
.text-shadow-white:focus {
  color: #FFF;
  text-shadow: 0 0 12px #FFF;
}







/* --- Begin Navbar CSS --- */
.nav-container {
  min-width: 320px;
  max-width: 1024px;
  margin: auto;
}
.navbar {
  background-color: #234;
}
.navbar-brand {
  max-width: 240px;
}
.fixed-top {
  max-width: 1024px;
  margin: auto;
}
.navbar .navbar-toggler {
  border: 1px solid rgba(240,240,240, 0.8);
  margin-top: 3px;
  color: rgba(240,240,240, 0.8);
}
.navbar .navbar-toggler:hover,
.navbar .navbar-toggler:active {
  border-color: rgba(240,240,240, 0.9);
  color: white;
}
.fa .fa-bars:hover {
  color: white;
}
.navbar a {
  color: #DDD;
}
.navbar a:hover,
.navbar a:focus {
  color: #FFF;
}
/* === End Navbar CSS === */



/* --- Begin Footer CSS --- */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  min-width: 320px;
  max-width: 1024px;
  height: 45px; /* Set the fixed height of the footer here */
  background-color: #234;
  padding: 0;
  margin: auto;
}
.footer p {
  margin-top: 10px;
  color: #DDD;
}
.footer a {
  color: #b7deed;
}
.footer a:focus,
.footer a:hover {
  text-decoration: none;
    color: #48E;
}
.footer .social-media {
  font-size: 1.8em;
  padding: 0 4px 2px 4px;
}
/* === End Footer CSS === */


@media only screen and (max-width: 768px){
  .nav-container {
    padding: 0;
    width: 100%;
  }
  body {
    margin-bottom: 60px;
  }
  .footer {
    width: 100%;
  }
  .footer p {
    margin-top: 10px;
    /*font-size: 0.8em;*/
  }
}
@media only screen and (max-width: 576px){
  .footer {
    padding: 10px 0 10px;
    height: 110px;
  }
  .footer p {
    margin-top: 0;
  }
  .
}