body {
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 50px;;
}

div.song {
  border: 2px solid lightgrey;
  display: flex;
  padding: 5px;
  margin: 5px;
}

h1 {
  text-align: center;
}

h2 {
  text-align: center;
}

div.artist {
  width: 50%
}
div.title {
  width: 50%
}
div.vinfo {
  display: flex;
}
div.vlink {
  text-align: center;
}

div.tbl {
    /*border: 2px solid black;*/
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin: 10px;
    width: 600px;
    height:  250px;
    display: flex;
}

ul {
    list-style-type: none;
    padding-inline-start: 0px;   
}

div.timg {
    margin: auto;
}

div.tinfo {
    width: 300px;  /* Or whatever */
    margin: auto;  /* Magic! */
}

div.outer {
    display: flex;
    flex-flow: row wrap;
}

img.timginner {
    max-width: 200px;
    max-height: 200px;
}

.button1 {
    display: inline-block;
    border-radius: 4px;
    background-color: #f4511e;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 28px;
    padding: 20px;
    width: 300px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
  }
  
  .button1 span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
  }
  
  .button1 span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
  }
  
  .button1:hover span {
    padding-right: 25px;
  }
  
  .button1:hover span:after {
    opacity: 1;
    right: 0;
  }

  .wasbinich {
    align-items: center;
    justify-content: center;
  }

  input[type="text"] {
    font-size: 20px;
    font-weight: normal;
    width: 500px;
    padding: 10px 10px 10px 5px;
  }


  .lbl {
    height: 50px;
    width: 150px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin: 10px;
    float: left;
    
  }

  .lbl:last-child { margin-right: 0; }

  
  .labl {
/*    display : block;*/
    width: 150px;
    height: 50px;
    
}
.labl > input{ /* HIDE RADIO */
    visibility: hidden; /* Makes input not-clickable */
    position: absolute; /* Remove input from document flow */
}
.labl > input + div{ /* DIV STYLES */
    cursor:pointer;
    border:2px solid transparent;
}
.labl > input:checked + div{ /* (RADIO CHECKED) DIV STYLES */
    background-color: #ffd6bb;
    border: 1px solid #ff6600;
}
.labl > div {
    width: 150px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    
}

.footer {
    /*position: fixed;*/
    position: static;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: White;
    text-align: center;
  }

  .lth  {
    font-size: 25px;
  }