@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);
body {
  box-sizing: border-box;
  color: #3D4852;
  background-color: #0d3fd4;
  background-image: url("https://cdn.pixabay.com/photo/2017/10/08/21/07/blue-2831631_1280.jpg");
  background-repeat: repeat;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.5;
  font-size: 14px;
}

.container {
  width: 1200px;
  margin: 40px auto;
  text-align: center;
}

.wrapper { text-align: center; padding-bottom: 3em; font-family: 'Righteous', impact; }
.wrapper h1 { width: 100%; text-align: center; font-size: 3em; margin-top: 1em; color: #b7fc39; line-height: 1em; }
.wrapper h2 { width: 100%; text-align: center; font-size: 1.8em; color: #efffd2; }

.container p { margin-top: 1em; }

.text-shadow { text-shadow:
     4px  4px 0 #000,
    -1px -1px 0 #000,  
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
     -webkit-text-stroke: 1px #000;
}

.container .list { max-width: 625px;
    transform: perspective(400px) rotateX(18deg);
    display: inline-block;
    width: 100%;  
  }

.list__header {
  background: url('/img/plastic_texture.jpg') no-repeat top center;
  background-size: 100% 100%;
  padding: 15px 20px 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  display: block;
  text-align: center;
  align-items: center;
  position: relative;
  z-index: 10000;
}
.list__header .trans {
  transform: perspective(200px) rotateX(-10deg) scaleY(1.1);
}
.list__header img {
  border-radius: 50%;
  width: 100px;
  border: 4px solid #ddd;
  position: relative;
  margin-top: -3.1em;
  box-shadow: 0 0 1px 2px rgba(0,0,0,.1);
}
.list__header .hostname {
  font-weight: bold;
  font-size: 20px;
}
.list__body {
  background: white;
  padding: 20px;
  border: 2px inset rgba(155,155,155,.5);
  border-top-width: 6px;
  border-bottom: 10px groove #aaa;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  filter: drop-shadow(0px -4px 16px rgba(0,0,0,0.7));
}

.list__item {
  display: inline-block;
  align-items: center;
  border: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 17px;
  cursor: pointer;
  margin: 1em;
  transition: all .25s ease;
  border-radius: 5px;
  border-bottom: 4px groove #ccc;
  border-bottom-style: inset;
}
.list__item:hover {
  background: #E2E2E2;
}
.list__item-key {
  border: 1px solid #ccc;
  background: #F3F3F3;
  font-size: 1.4em;
  line-height: 1;
  font-weight: bold;
  border-radius: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list__item-quote {
  font-weight: bold;
  margin-left: 14px;
}

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

.shake-em-up {
  animation: 0.05s infinite alternate shake;
}

.bmc-btn-container { transform: scale(0.7); }

iframe.twitter-share-button { margin-right: 0.6em; border: 1px solid rgba(0,0,0,.4); border-radius: 5px; }
iframe.twitter-follow-button { border: 1px solid rgba(0,0,0,.4); border-radius: 5px; }


@keyframes waggle {
  from {
    transform: rotate(8grad);
  }
  to {
    transform: rotate(-8grad);
  }
}

@keyframes shake {
  from {
    transform: rotate(-8grad);
  }
  to {
    transform: rotate(0grad);
  }
}

/* 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;
  }

  .container p span { display: none; }

  .container .list { max-width: 625px;
    transform: perspective(400px) rotateX(15deg);
    margin-bottom: 3em;
    margin-top: -1.2em;
    width: 84%;  
  }

  .list__item {
    border-radius: 5px;
    border-bottom: 4px groove #ccc;
    border-bottom-style: inherit;
  }

  .list__item:hover {
    background: inherit!important;
  }
}
/* Extra Small Devices, Phones */
/* Custom, iPhone Retina */