@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Code:ital,wght@0,300..800;1,300..800&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

@font-face {
    font-family: 'edelweiss';
    src: url('../webfonts/edelweiss.woff2') format('woff2'),
        url('../webfonts/edelweiss.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, menu, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

html, 
body {
  font-family: 'Open Sans', sans-serif;
  position: relative;
  height: 100%;
  width: 100%;
  background-color: #121212;
}

.cover {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cover .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: opacity 5s ease-in-out;
}

.cover .bg-image.show {
  opacity: 1;
}

.sitename {
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'edelweiss', sans-serif;
  font-size: 72px;
  color: #fff;
  z-index: 100;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  transition: all 0.7s ease-in-out;
}



.play-pause-button {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 100;
  text-align: center;
}


div.play-pause {
  display: block;
  font-family: 'FontAwesome', sans-serif;
  text-align: center;
  line-height: 144px;
  font-size: 84px;
  width: 144px;
  height: 144px;
  margin: 0 auto;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s ease-in-out;
  opacity: .7;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  background-color: rgba(0,0,0,.2);
  border-radius: 16px;
}

div.play-pause:hover {
  opacity: 1;
}

div.play-pause.is-paused .fa-play {
  display: inline-block;
}

div.play-pause.is-paused .fa-pause,
div.play-pause.is-paused .fa-spinner {
  display: none;
}

div.play-pause.is-playing .fa-pause {
  display: inline-block;
}

div.play-pause.is-playing .fa-play,
div.play-pause.is-playing .fa-spinner {
  display: none;
}

div.play-pause.is-loading .fa-spinner {
  display: inline-block;
}

div.play-pause.is-loading .fa-play,
div.play-pause.is-loading .fa-pause {
  display: none;
}
  

.current-time {
  font-size: 12px;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  margin-top: 10px;
}

.station-info {
  position: fixed;
  bottom: 50px;
  right: 50px;
  font-size: 24px;
  font-weight: 700;
  max-width: 50%;
  color: #fff;
  z-index: 100;
  text-align: right;
  opacity: 0.5;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  transition: all 0.7s ease-in-out;
}

.station-info:hover {
  opacity: 1;
}

.station-info .song {
  display: block;
  font-size: 32px;
  overflow: hidden;
}