html, body {
  min-height: 100%;
  margin: 0;
}

body {
  background: -webkit-gradient(linear, left top, left bottom, from(#00c4ff), to(white));
  background: -webkit-linear-gradient(#00c4ff, white);
  background: -o-linear-gradient(#00c4ff, white);
  background: linear-gradient(#00c4ff, white);
  font-family: Roboto, sans-serif;
  font-size: 1.1em;
  min-height: 580px;
  margin: 0;
  padding: 0;
  position: relative;
}

/* Banner Minecraft */
.banner img {
  width: 100%;
  margin: 0 auto;
}

.banner {
  width: 620px;
  margin: 15px auto;
}

/* TwitchTV streams */
.container {
  border-radius: 2px;
  -webkit-box-shadow: 0 22px 70px 4px rgba(0, 0, 0, 0.56);
          box-shadow: 0 22px 70px 4px rgba(0, 0, 0, 0.56);
  margin: 10px auto;
  overflow: hidden;
  width: 500px;
}

.panel-heading {
  background-color: #4b367c;
  margin: 0 auto;
}

.panel-title {
  color: white;
  font-family: 'Merriweather', serif;
  font-size: 1.8em;
  padding: 10px;
  text-align: center;
  margin: 0;
}

/* Menu */
ul {
  background: #f5f5f5;
  list-style: none;
  margin: 0;
  padding: 0;
}

li:hover {
  background-color: #e7e7e7;
}

ul.menu li {
  display: inline-block;
  padding: 10px;
  cursor: pointer;
  text-align: center;
  width: 143px;
}

li.selected {
  -webkit-box-shadow: inset 0px -5px 0px 0px #4b367c;
          box-shadow: inset 0px -5px 0px 0px #4b367c;
}

/* Search */
.search-bar {
  position: relative;
}

.fa-search {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #C4C2C2;
}

input {
  font-size: 1.0em;
  display: block;
  height: 15px;
  width: 459px;
  width: calc(100% - 42px);
  padding: 10px 10px 10px 30px;
  border: solid 1px #c9c9c9;
  border-bottom: 0px;
}

input:focus {
  outline: none;
}

/* Streamers */
.streamers li {;
  margin: 0 auto;
  border-top: 1px solid #b0b0b0;
  height: 80px;
  position: relative;
  cursor: pointer;
}

.streamers img {
  height: 100%;
}

.name {
  color: #424242;
  position: absolute;
  margin: 15px 10px;
  text-transform: capitalize;
}

li p {
  position: absolute;
  bottom: 0px;
  display: inline-block;
  line-height: 1.2em;
  margin: 20px 10px 15px 10px;
  font-size: 0.8em;
  width: 75%;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.online {
  border-right: 7px solid #00c4ff;
}

.online p {
  color: #89B20C;
}

.offline {
  border-right: 7px solid #d6d6d6;
}

.offline p {
  color: #b6b6b6;
  font-weight: 300;
}

.hidden {
  display: none;
}

.filtered {
  display: none;
}

/* Background Steve */
.steve {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -20;
}

.steve img {
  width: 95%;
}

@media only screen and (max-width: 500px) {
  .container {
    width: 100%;
    margin: 0px;
    overflow: visible;
  }
  
  .banner {
  width: 420px;
  }
}