/*main text formatting */

body{
  background-color: white;
	color: black;
	font-size: 24px;
	font-family: courier;
	margin-left: 5%;
	margin-right: 5%;
}

.main img {
  width: 50%;
  height: auto;
  }

.main{
  font-size: 24px;
	margin-left: 15%;
	margin-right: 5%;
}

.discog{
  font-size: 12px;
	margin-left: 160px;
	margin-right: 5%;
}

p{
  margin-left: 15%;
  margin-left: 160px;
  padding: 10px 10px;
  color: black;
	font-size: 12px;
	font-weight: bold;
	font-family: courier;
}

/*navigation*/
.nav{
  list-style-type: none;
  background-color:black;
  margin: 0;
  padding: 0;
  font-size:12px;
  width: 10%;
  height: 100%; /* Full height */
  position: fixed; /* Make it stick, even on scroll */
  overflow: auto; /* Enable scrolling if the sidenav has too much content */
}

/* The navigation menu links */
.nav a{
  padding: 10px 10px 10px 10px;
  text-decoration: none;
  font-size: 14px;
  color: red;
  display: block;
}

/* When you mouse over the navigation links, change their color */
.nav a:hover {
  color: #f1f1f1;
}

/* Style page content */
.main {
  margin-left: 160px; /* Same as the width of the sidebar */
  padding: 10px 10px;
}

/* discog content */
.discog {
  margin-left: 160px;/* Same as the width of the sidebar */
  padding: 10px 10px;
  background-color: white;
	color: black;
	font-size: 12px;
	font-family: courier;
	margin-right: 5%;
}

/* below is link hovering */
a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  text-decoration: underline;
}