@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
body {
	background: rgb(149,213,255);
	background: radial-gradient(circle, rgba(149,213,255,1) 0%, rgba(2,157,185,1) 100%);
	margin:0;
	padding:0;
	font-size: 13px;
	font-family: 'Roboto', sans-serif;
}

#logo {
    background-image: url(../img/logo.png);
    width: 309px;
    height: 158px;
    margin: auto;
    margin-top: 100px;
    margin-bottom: 50px;
    position: relative;
    transition: 0.3s;
    animation: 1s linear;
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}
#logo:hover {
	margin-top:80px;
	margin-bottom:70px;
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}
#container {
	width:500px;
	height:auto;
	margin:auto;
}
#radio {
	width:100%;
}
#radio #avatar {
    width: 128px;
    height: 220px;
    margin-top: -50px;
    float: left;
    z-index: 500;
}
#radio #gitarre {
	background-image:url(../img/gitarre.png);
    width: 59px;
    height: 179px;
    margin-top: -25px;
    margin-right: -60px;
    float: left;
}
#radio #sendung {
	background: #fff;
    color: #5D5D5D;
    font-size: 13px;
    width: auto;
    border-radius: 0 50px 50px 0px;
    padding: 10px 20px 10px 60px;
    margin-left: 50px;
    box-shadow: 2px 2px 0px 0px rgba(0,0,0,0.1);
    text-overflow: ellipsis;
    white-space: nowrap;
}
#radio .listeners {
	background: transparent;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    color: #fff;
    border: 2px solid #ffffff;
    margin-top: -106px;
    margin-right: 8px;
    float: right;
    position: relative;
    box-shadow: 2px 2px 0px 0px rgba(0,0,0,0.1);
    z-index: 0;
}
#radio .listeners #zahl{
	font-size: 14px;
    margin-top: 8px;
    width: 33px;
    text-align: center;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.15);
}
#radio .tunein {
    background: #ffffff;
    width: 55px;
    height: 55px;
    border-radius: 100%;
    float: right;
    position: relative;
    margin-top: -75px;
    box-shadow: 2px 2px 0px 0px rgba(0,0,0,0.1);
    z-index: 1;
}
#radio .tunein i{
    font-size: 16px;
    color: #188cb4;
    line-height: 55px;
    width: 55px;
    text-align: center;
}
/* Pulse Shrink */
@-webkit-keyframes hvr-pulse-shrink {
  to {

    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@keyframes hvr-pulse-shrink {
  to {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

.hvr-pulse-shrink {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-animation-name: hvr-pulse-shrink;
  animation-name: hvr-pulse-shrink;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

#sendeinfos {
	color: #fff;
}

#sendeinfos #dj {
	font-size: 20px;
  margin-bottom: 25px;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.10);
  font-weight: 500;
}

#sendeinfos #programm {
	margin-bottom: 20px;
}

#sendeinfos #programm .title {
	font-size: 20px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.10);
  font-weight: 500;
}

#sendeinfos #programm .name {
	font-size: 13px;
  text-shadow: 1px 1px 0px rgba(0,0,0,0.15);
}

footer {
	margin-top: 50px;
  color: #fff;
  text-shadow: 1px 1px 0px rgba(0,0,0,0.15);
}

#box {
  background: #fff;
  color: #5D5D5D;
  font-size: 13px;
  width: auto;
  border-radius: 5px;
  padding: 10px;
  margin-top: 50px;
  box-shadow: 2px 2px 0px 0px rgba(0,0,0,0.1);
  word-break: break-word;
}