@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
}

html,body {
  font-size: 18px;
  font-family: Helvetica, Arial, sans-serif;
  width: 100%;
  height: 100%;
}

.background {
  position: fixed;
  background-color: #000;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.bg-img {
  background-image: url("img/mc-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  width: 100%;
  height: 100%;
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  filter: blur(10px);
}

.panel {
  display: block;
  width: clamp(300px, 430px, 90%);
  background-color: #181818;
  margin: 0 auto;
  box-shadow: 0 0 1rem #000;
  border-radius: 0 0 7px 7px;
}

header {
  position: relative;
}

#header-img {
  display: block;
  width: 100%;
  height: auto;
}

.top-text {
  color: #FFF;
  line-height: 1.3;
  text-align: center;
  padding: 10px 0;
}

.social {
  width: 100%;
  text-align: center;
  position: absolute;
  list-style: none;
  bottom: 2.5%;
}

.social li {
  display: inline-block;
  margin: 0 3%;
  width: clamp(48px, 60px, 15%);
}

.social li img {
  width: 100%;
  height: auto;
  transition: box-shadow 0.3s;
  border-radius: 16px;
  vertical-align: bottom;
}

.social li img:hover {
  cursor: pointer;
  box-shadow: 0px 0px 21px 0px rgba(245,245,245,0.65);
}

.click a {
  display: block;
}

.streaming {
  position: relative;
  list-style: none;
  background-color: #FFF;
  z-index: 1;
}

.streaming li {
  text-align: center;
  border-bottom: 1px solid #000;
  box-shadow: inset 0px -20px 15px -20px rgba(128,128,128,0.25);
}

.streaming li:hover {
  cursor: pointer;
  background-color: rgba(211,211,211, 0.25);
}

.streaming object {
  height: 2.15rem;
  padding: 0.85rem 0;
  vertical-align: bottom;	
  pointer-events: none;
}

.bottom-panel {
  width: 100%;
  height: 1rem;
}

footer {
  font-size: 0.65rem;
  text-align: center;
  color: #000;
  margin-top: 0.2rem;
  padding-bottom: 0.2rem;
}

@media only screen and (min-resolution: 200dpi) and (orientation: portrait) {
  .background {
    background-color: #d1d1e0;
  }
  .bg-img {
    visibility: hidden;
  }