body {
	margin-top: 40px;
	background-color: #015;
	color: #FFF;
	text-align: center;
	font-family:sans-serif;
}
#coming_home_img {
	border-radius: 5px;
	margin-bottom: 5px;
	width: 200px;
	height: 300px;
	object-fit: cover;
	object-position: 0% 60%;
}
#lockdown_img {
	border-radius: 5px;
	margin-bottom: 5px;
	width: 200px;
	height: 300px;
	object-fit: cover;
	object-position: 100% 60%;
}
#envelope {
	vertical-align: top;
	background-color: #0c42b5;
	margin: auto;
	width: 520px;
	border:1px solid #FFF;
	border-radius: 5px;
	color: white;
}

h3 {
	margin: 0px;
	margin-bottom: 25px;
	font-size: large;
	color: white;
}
a.menu_links {
    cursor: pointer;
}
a {
	font-size: medium;
	text-decoration: none;
	background-color: #002d8d;
	color: #FFF;
	border: 1px solid;
	padding: 5px;
	padding-left: 10px;
	padding-right: 10px;
	border-radius: 15px;
	margin: 10px;
	margin-bottom: 30px;
}
a:link {
	text-decoration: none;
}
a:visited {
	color: #FFF;
}
a:hover {
	color: #0F0;
}
a:active {
	color: #FFF;
}

#credits {
	text-align: center;
}
#album {
	margin: 0px;
}
#home {
	margin: 0px;
	padding: 2px;
}
#navigation {
	display : flex;
	align-items : center;
	justify-content: center;
	margin: 0px;
	margin-bottom: 10px;
	padding: 0px;
}
#footer {
	color: #DDD;
	font-size: 15px;
	bottom: 30px;
	text-align: center;
	margin: auto;
	padding: 20px;
}

span {
	position: relative;
	top: 0px;
	text-align: center;
	text-anchor: middle;
	text-decoration: none;
	font-weight: bold;
	color: #000;;
	padding: 2px;
	margin: 0px;
	border-radius: 30px;
	cursor: pointer;
	background-image: linear-gradient(white,lightgray);
	border: 1px solid lightgray;
}

.audio_controls {
	flex: 1;
	text-align: center;
	padding: 5px;
	width: 200px;
	background-color:#eee;
	border-radius: 5px;
	margin: 25px;
	margin-top: 0px;
}

.timeline {
	-webkit-appearance: none;
	margin: 0px;
	margin-top: 2px;
	margin-bottom: 2px;
	width: 100%;
	height: 2px;
	background-color:aaa;
	border-radius: 5px;
	background-size: 0% 100%;
	background-image: linear-gradient(white, #0c42b5);
	background-repeat: no-repeat;
}
.timeline::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: .5em;
	height: .5em;
	border-radius: 5px;
	cursor: pointer;
	opacity: 0;
	transition: none;
	background-color:#000000;
}
.timeline::-webkit-slider-thumb:hover {
	background-color:#015;
}
.timeline:hover::-webkit-slider-thumb {
	opacity: 1;
}
.timeline::-webkit-slider-runnable-track {
	-webkit-appearance: none;
	box-shadow: none;
	border: none;
	background: transparent;
}

#time-text {
	display: flex;
	justify-content: space-between;
	margin: 0px;
	padding: 0px;
	width: 100%;
	line-height: 10px;
	font-size: 5px;
	color:#000;
	text-align: left;
}
#elapsedTime {
	flex: 1;
}
#remainingTime {
	flex: 1;
	text-align: right;
}

#content {
	display: flex;
	justify-content: space-between;
	margin: 0px;
	padding: 0px;
	line-height: 10px;
	font-size: 5px;
	color:#000;
	text-align: left;
}
#song_list {
	margin-right: 50px;
	margin-left: 10px;
	flex: 1;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 1,
  'wght' 700,
  'GRAD' 0,
  'opsz' 48
}

#scroll-container {
	/*border-top:1px solid #333;
	border-left:1px solid #333;
	border-right:1px solid #DDD;
	border-bottom:1px solid #DDD;*/
	border-radius: 2px;
	overflow: hidden;
	width: 100%;
	height: 1.5em;
	margin: 0px;
	background-color:#015;
	color:#0F0;
	font-family: 'IBM Plex Mono', monospace;
	font-size: small;
	line-height: 1.5em;
}
  
#scroll-text {
	white-space: nowrap;
	/* animation properties */
	-moz-transform: translateX(50%);
	-webkit-transform: translateX(50%);
	transform: translateX(50%);
	
	-moz-animation: my-animation 10s linear infinite;
	-webkit-animation: my-animation 10s linear infinite;
	animation: my-animation 10s linear infinite;
}
  
/* for Firefox */
@-moz-keyframes my-animation {
	from { -moz-transform: translateX(100%); }
	to { -moz-transform: translateX(-100%); }
}
  
/* for Chrome */
@-webkit-keyframes my-animation {
	from { -webkit-transform: translateX(100%); }
	to { -webkit-transform: translateX(-100%); }
}
  
@keyframes my-animation {
	from {
	  -moz-transform: translateX(100%);
	  -webkit-transform: translateX(100%);
	  transform: translateX(100%);
	}
	to {
	  -moz-transform: translateX(-100%);
	  -webkit-transform: translateX(-100%);
	  transform: translateX(-100%);
	}
}