/* Font Face */
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+TC');

@font-face {
  font-family: 'ico';
  src: url('../fonts/ico/ico.woff') format('woff');
}

/* Global */
body, html{
  margin: 0;
  overflow-x: hidden;

  background-color: #222;
  -moz-user-select: none;
  user-select: none;

  font-family: 'Noto Sans TC', sans-serif;


}

*{
  box-sizing: border-box;
}

.lyrics{
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lyrics-box{
  width: 1000px;
  height: 600px;

  position: relative;
}

.lyrics-box__date{
  position: absolute;
  left: 0;
  bottom: 100%;

  font-size: 2rem;

  padding: 5px 15px;
  z-index: 1;
  box-shadow: 0 0 3px #999;
  background-color: #fff;
}

.lyrics-box__overflow{
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;

  padding: 60px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.lyrics-box__bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-position: center center;
  background-size: cover;

  filter: blur(5px);
  overflow: hidden;
  z-index: 0;
}

.lyrics-box__center{
  text-align: center;
}

.lyrics-box__quote{
  position: relative;
  display: inline;
  padding: 1px 12px;
  font-size: 2.8rem;
  line-height: 1.54;
  white-space: pre-wrap;
}
.lyrics-box__quote:before, .lyrics-box__quote:after{
  position: absolute;
  font-family: 'ico';
  font-size: 6rem;
}
.lyrics-box__quote:before{
  bottom: 100%;
  right: 95%;
}
.lyrics-box__quote:after{
  top: 100%;
  left: 95%;
}

.lyrics-box__info{
  position: absolute;
  right: 40px;
  bottom: 40px;
  padding: 1px 12px;
  display: flex;
  align-items: baseline;
}

.lyrics-box__song{
  font-size: 2rem;
}

.lyrics-box__singer{
  font-size: 1.5rem;
}

.lyrics-box__singer:before{
  content: '-';
  margin: 0 10px;
}

/* Style */
.light .lyrics-box__quote, .light .lyrics-box__info{
  background-color: rgba(255,255,255,0.3);
  color: #000;
}
.light .lyrics-box__date{
  background-color: rgba(255,255,255,0.5);
}
.light .lyrics-box__quote:before, .light .lyrics-box__quote:after{
  color: rgba(255,255,255,0.6);
}
.light .lyrics-box__quote:before{
  content: '\e903';
}
.light .lyrics-box__quote:after{
  content: '\e902';
}

.dark .lyrics-box__quote, .dark .lyrics-box__info{
  background-color: rgba(0, 0, 0, 0.3);
  color: #fdfdfd;
}
.dark .lyrics-box__date{
  background-color: rgba(0, 0, 0, 0.8);
  color: #fdfdfd;
  box-shadow: 0 0 3px #222;
}
.dark .lyrics-box__quote:before, .dark .lyrics-box__quote:after{
  color: rgba(0,0,0,0.6);
}
.dark .lyrics-box__quote:before{
  content: '\e901';
}
.dark .lyrics-box__quote:after{
  content: '\e900';
}
