body{
    margin: 0px;
    border: none;
    height: 100vh;
    width: 100%;
	touch-action: pan-x pan-y;
	overflow: hidden;
}

#background{
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 90;
    transition: opacity 1s ease-in-out !important;
}

#blur{
    position: absolute;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
    pointer-events: none; /* make the overlay click-through */
    z-index: 91;
}

#section{
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

#albumart{
    position: absolute;
    display: flex;
    width: 300px;
	height: 300px;
    margin-bottom: 100px;
    z-index: 100;
    border-radius: 5%;
    box-shadow: 0px 0px 18px #303030;
    -moz-box-shadow: 0px 0px 18px #303030;
    -webkit-box-shadow: 0px 0px 18px #303030;
    -khtml-box-shadow: 0px 0px 18px #303030;
    transition: opacity 1s ease-in-out !important;
}

@media only screen and (max-width: 600px) {
  #albumart{
    top: 130px !important;
  }
  #control{
    top: 130px !important;
  }
}

#control{
    position: absolute;
    display: flex;
    opacity: 1;
    width: 300px;
    height: 300px;
    margin-bottom: 100px;
    z-index: 101;
    border-radius: 5%;
    background-color: rgba(23, 22, 22, 0.721);
    justify-content: center;
    align-items: center;
}

#control #button{
    position: relative;
    display: block;
    width: 55px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5%;
    cursor: pointer;
}

#control #pause{
    display: none;
}

#logo{
    position: absolute;
    display: block;
    width: 50px;
    z-index: 99;
    right: 0;
    bottom: 0;
    padding-right: 23px;
    padding-bottom: 23px;
}

#info{
    display: block;
    max-width: 420px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: clip;
    position: absolute;
    z-index: 99;
    padding-top: 350px;
    text-align: center;
	text-transform: capitalize;
}
 
#info span{
    display: block;
    line-height: 28px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
	max-width: 420px;
	overflow: hidden;
    white-space: nowrap;
    text-overflow: clip;
    padding-left: 5px;
    padding-right: 5px;
	min-height: 21px;
}
.right-fade{
    mask-image: linear-gradient(to right, rgba(0,0,0,1) 80%, rgba(0,0,0,0));
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 80%, rgba(0,0,0,0));
}
.left-fade{
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 80%, rgba(0,0,0,0));
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 80%, rgba(0,0,0,0));
}

.marquee{
    width:400px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: clip;
}

#title{
    max-width: 420px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 2.1em;
    line-height: 38px !important;
}

#artist{
    max-width: 420px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
    font-size: 1.2em;
}

#album{
    max-width: 420px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
    font-size: 1.2em;
    line-height: 18px !important;
}

#stream{
    visibility: hidden;
    display: none;
}
#youtube{
	position: absolute;
    display: block;
    width: 58px;
    z-index: 99;
    left: 32px;
    bottom: 8px;
    padding-right: 23px;
    padding-bottom: 23px;
}
#saturday{
    width: 100%;
    height: 100%;
    z-index: 1000;
    position: relative;
	background-color: rgba(33, 33, 33, 0.98);
}


/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 50%;
  height: 100%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.row{
	min-height: 100%;
    min-width: 100%;
	position: relative;
	top: 25vh;
}

#saturday_title{
	position: absolute;
    color: white;
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
    font-size: 1.9em;
    width: 100%;
    text-align: center;
    padding-top: 40px;
}

#popup{
    background: rgba(0, 0, 0, 0.85);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9999;
	display: none;
}
#info_box{
    width: 100%;
    height: 100%;
    position: relative;
    vertical-align: middle;
    margin-top: auto;
    margin-bottom: auto;
}
#info_center{
    color: white;
    position: absolute;
    height: 100%;
    margin: 0;
    max-width: 90vw;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -10%);
    text-align: center;
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
    font-size: 1.2em;
}
#info_link{
    position: relative;
    width: 100%;
	display: none;
}
#info_link > a{
    color: gray;
    text-decoration: none;
    background: white;
    display: block;
    padding: 10px 20px;
    border-radius: 4px;
    margin-top: 30px;
    max-width: 140px;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
    font-size: 16px;
}
#close_info{
	position: fixed;
    display: block;
    left: 10px;
    top: 10px;
    cursor: pointer;
}
#close_info > img{
	width: 25px;
}
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
.row{
	min-height: 100%;
    min-width: 100%;
	position: relative;
	top: 10vh;
}
#saturday_title{
    padding-top: 26px;
}
}