html {
  background:url("https://64.media.tumblr.com/c2d1774da63447d4af3005f17adb698e/6f4fa00ef0bdb475-76/s640x960/cb4c714fc68865fa4a408abf1944b9775c8bc7e1.pnj");
  
  background-attachment:fixed;
  background-size:100% 100%;
  font-family:"georgia", monospace;
  }

.container {
display:grid;
grid-gap:10px;
margin:25px auto;
max-width:900px;
color:#23344c;
grid-template-columns: minmax(0, 1fr);
}
song1, song2, song3, nav, space, header{
  border:black 2px solid;
  padding:5px;
}
song1, song2, song3{
  background:#f9f4e4;
  }
song1>a{
 position:relative;
 top:10px;
 left:5px;
}
header {
  grid-row:1/2;
  grid-column:2/8;
  padding:5px;
}
nav {
  grid-row:2/3;
  grid-column:1/2;
  height:250px;
  ul{
    padding:10px;
    }
 }
song1{
  grid-row:2/3;
  grid-column:2/4;
}
song2{
  grid-row:2/3;
  grid-column:4/6;
}
song3{
  grid-row:2/3;
  grid-column:6/8;
  }
