@charset "UTF-8";
/* CSS Document */

<style type="text/css">
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');


/* CSS Document */


* {margin:0;padding:0;}

.center {text-align:center;}
.right {text-align:right;}
.left {text-align:left;}

body {
font-family: 'Roboto', sans-serif;
font-size: 18px;
font-weight: 500;
background-color:#037dad;
color:#fff;
overflow-y:scroll;
padding:0;
margin:0;
height:auto;
text-align: center;
}

#socialMediaLinkContainer:hover {
background-color: #ed4c46;
color: #fff; 	
}

#buyItAllButton {
background-color: #037dad;
color: #fff; 	
}

#buyItAllButton:hover {
background-color: #ed4c46;
color: #fff; 	
}

#musicAlbum:hover {
background-color: #ed4c46;	
color: #fff;	
}

#socialMediaBar a:link {text-decoration: none;  color: #037dad;}
#socialMediaBar a:hover {text-decoration: none; color: #fff;}
#socialMediaBar a:active {text-decoration: none; color: #ea5e59;}
#socialMediaBar a:visited {text-decoration: none; color: #037dad;}

a:link {text-decoration: none; color: #fff;}
a:hover {text-decoration: none; color: #ea5e59;}
a:active {text-decoration: none; color: #ea5e59;}
a:visited {text-decoration: none; color: #fff;}

/* CONTACT FORM STYLE */

/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #037dad;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #ed4c46;
	color:#fff;
}

/* Add a background color and some padding around the form */
.container {
  border-radius: 15px;
  background-color: #bedeec;
  padding: 20px;
}

/* Boom Box Style Code */
#demo { width: 100%; }
#demoAudio { width: 100%; }
#demoList { margin-top: 10px; }
#demoList .song {
  	padding: 20px 0px;
  	color: #037dad;
  	border-bottom: 1px solid #fbf9f6;
  	cursor: pointer;
	font-family: 'Roboto', sans-serif;
	font-size: 25px;
	width:100%;
}
#demoList .song:first-child {
  	border-top: 1px solid #fbf9f6;
	font-family: 'Roboto', sans-serif;
	width:100%;	
}
#demoList .song.now {
  	font-weight: 700;
  	color: #fff;
  	background: #037dad;
  	font-family: 'Roboto', sans-serif;
	width:100%;
	
}
#demoList .song::before {
  content: "";
  margin-right: 10px;
	font-family: 'Roboto', sans-serif;
	width:100%;
}
#demoList .song.now::before {
  content: "\27A4";
	font-family: 'Roboto', sans-serif;
	width:100%;
}