@import url(reset.css);
a {
  transition: transform 2s;
}
a:hover {
  transform: scale(2);
}
ul {
    list-style-type: none;
    overflow: hidden;
    color: gray;
}
  
li {
    float: right;

  }
  
li a {
    display: block;
    margin: 50px;
    background-color: #dddddd;
    text-decoration: none;  
    color: black;
}

footer {
    text-align: center;
    background-color: white;

}
nav {
    position: relative;
    right: 0;
}

main {
    display: grid;
    grid-template-areas:    
    'Song1 Song2 Song3'
    'Song4 Song5 nothing';
    gap: 20px;
    margin-left: 10%;
    margin-right: 10%;
    display: flex;
}
main > * {
    border-radius: 10px;
}
main div {
  text-align: center; 
  background-color: white; 
  width: 20%;
}
div.gallery {
    margin: 5px;
    border: 1px solid #ccc;
    float: left;
    width: 180px;
  }
  
  div.gallery:hover {
    border: 1px solid #777;
  }
  
  div.gallery img {
    width: 100%;
    height: auto;
  }
  
  div.desc {
    padding: 15px;
    text-align: center;
  }
h1 {
  grid-area: Song1;
}
h2 {
  grid-area: Song2;
}
h3 {
  grid-area: Song3;
}
h4 {
  grid-area: Song4;
}
h5 {
  grid-area: Song5;
}
.section1 {
  grid-area: nothing;
}
footer {
position: fixed;
width: 100%;
bottom: 0;
}
@media screen and (max-width:410px) {
  main {
      display: flex;
      flex-direction: column;
      font-size: 16px;
      margin-left: 30%;
  }
  main div {
    text-align: center; 
    background-color: white; 
    width: 70%;
  }
  footer {
    position: relative;
    width: 100%;
    bottom: 0;
    }
  li a {
    margin: 5px;
  }
}
@media screen and (max-width:1023px) and (min-width:411px) {
  main {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    margin-left: 30%;
}
main div {
  text-align: center; 
  background-color: white; 
  width: 70%;
}
footer {
  position: relative;
  width: 100%;
  bottom: 0;
  }
li a {
  margin: 20px;
}
}