* {
  box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #000000;
}

#songhead {
    width: 100%;
    height: 350px;
    background-image: url("images/songhead.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

header {
  background-color: DarkSlateBlue;
  padding: 30px;
  text-align: center;
  font-size: 35px;
    color: white;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 20;
    overflow: hidden;
    background-color: #000000;
}

li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-variant: small-caps;
}

li a:hover:not(.active) {
  background-color: CornflowerBlue;
}

.active {
  background-color: Indigo;
}

.button {
  background-color: white;
  border: 2px solid #4b0082;
  color: black;
  padding: 15px 25px;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
}

.button:hover {
  background-color: #b3ccff;
}

pic {
  float: left;
  width: 30%;
  min-height: 650px;
  height: auto;
  background: #ccc;
  padding: 20px;
}

img {
  width: 100%;
  height: auto;
}

article {
  float: left;
  padding: 20px;
  width: 70%;
  background-color: #f1f1f1;
  min-height: 650px;
  height: auto;
}

section:after {
  content: "";
  display: table;
  clear: both;
}

#rcorners2 {
  border-radius: 25px;
  border: 2px solid #4b0082;
  padding: 20px; 
  width: 100%;
  height: auto;  
}

table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  padding: 8px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

tr:hover {background-color:#f5f5f5;}

footer {
    position:fixed;
    left:0;
    bottom:0;
    width:100%;
  background-color: #777;
  padding: 7px;
  text-align: center;
  color: white;
}


@media (max-width: 600px) {
  pic, article {
    width: 100%;
    height: auto;
  }