body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(to bottom, #111111, #181818 60%, #111111);
    margin: 0;
    padding: 0;
  }
  
  header {
    color: #ffffff;
    font-size: 20px;
    padding: 20px;
    text-align: center;
  }
  
  nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, #181818, #202020, #181818);
  }
  
  nav button {
    background: none;
    margin: 0;
    padding: 5px 10px;
    display: inline-flex;
    font-size: 30px;
    color: #c9c7c7;
    border: none;
    cursor: pointer;
  }
  
  nav button:hover {
    color:#fff;

  }

  #selected-artist {
    color: #fff;
    padding-left: 20%;
  }

  #selected-artist span {
    font-size: 40px;
  }
  #artistLinks {
    font-size: 20px;
    color: #c9c7c7;
    text-decoration: none;
  }

  #artistLinks:hover{
    color: #fff;
  }
  
  #selected-artist-songs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
    margin: 0 auto;
    width: 75%;
  }

  #edit-song-form {
    color: #fff;
    padding: 0% 20%;
  }
  
  #edit-song-form input {
    width: 100%;
    padding: 12px 25px;
    margin: 15px 0;
    box-sizing: border-box;
  }

  #edit-song-form button[type=submit] {
    color:#c9c7c7;
    width: 100%;
    background: linear-gradient(to bottom, #181818, #202020, #181818);
    border: 1px solid #000000;
    text-decoration: none;
    padding: 16px 31px;
    margin: 10px 0;
    cursor: pointer;
    margin-bottom: 70px;
  }

  #edit-song-form button[type=submit]:hover{
    color: #fff;
    
  }

  .hidden {
    display: none;
  }
  
  .song-card {
    width: 270px;
    min-height: 500px;
    height: auto;
    margin: 10px;
    padding: 0px;
    background: linear-gradient(to top, #111111, #333);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.261);
    transition: transform 0.2s ease;
    cursor: pointer;
  }
  .song-card:hover{
    /* NOTE TO SELF: translation may need tinkering to ensure clicking the edit button isn't difficult */
    transform: translateY(-5px);
  }
  
  .song-card img {
    width: 100%;
    height: auto;
  }
  
  .song-card p {
    color: #fff;
    padding: 10px 20px;
    margin: 5px 0;
  }

  .edit-button {
    display: block;
    text-align: right;
    color: #c9c7c7;
    padding: 3px 5px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
  }
  .edit-button:hover {
    color:#fff;
  }