@import url('https://fonts.googleapis.com/css?family=Baloo+Thambi|Signika');
body {
  box-sizing: border-box;
  color: #3D4852;
  background-color: #000033;
  background-image: 
     linear-gradient(
      rgba(255, 0, 0, 0.25), 
      rgba(255, 0, 0, 0.25)
    ),
    url("../img/wallpaper.png");
  background-size: 7%;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.5;
  font-size: 14px;
}

.container {
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
  margin: 1em auto;
  width: 100%;
}

.list__header {
  background: #810b0f;
  color: #03f603;
  padding: 15px 20px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  display: flex;
  align-items: center;
}
.list__header img {
  border-radius: 50%;
  width: 70px;
  background: #000033;

}
.list__header .hostname {
  margin-left: 12px;
  font-weight: bold;
  font-size: 5.0vw;
  font-family: "Baloo Thambi";
}
.list__body {
  background: #8595a4;
  padding: 20px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.list__item {
  display: flex;
  background: #000033;
  align-items: center;
  font-weight: bold;
  color: #02c402;
  font-size: 1.5em;
  border: 1px solid #02c402;
  padding: 10px;
  margin-bottom: 17px;
  cursor: pointer;
  transition: all .25s ease;
  font-family: "Signika";
}
.list__item:hover {
  background: #E2E2E2;
}
.list__item-key {
  border: 1px solid #02c402;
  background: #F3F3F3;
  line-height: 1;
  font-weight: bold;
  border-radius: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;

}
.list__item-quote {
  font-weight: bold;
  margin-left: 14px;
}

.list {
  margin: auto;
    width: 80%; 
}

.playing {
  border-color: #ffc600;
  box-shadow: 0 0 1rem #ffc600;
  animation: 0.05s infinite alternate waggle;
}

@keyframes waggle {
  from {
    transform: rotate(4grad);
  }
  to {
    transform: rotate(-4grad);
  }
}
/* Large Devices, Wide Screens */
/* Medium Devices, Desktops */
@media only screen and (max-width: 992px) {
  .container {
    grid-template-columns: 1fr 1fr;
    width: 90%;
  }
}
/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
  }
}
/* Extra Small Devices, Phones */
/* Custom, iPhone Retina */
