.two {
  display: grid;
  grid-template-columns: 50% 50%;
}
.frame {
  margin: 4px;
  padding: 12px;
  border-radius: 4px;
  font-size: 16px;
}
.forceheight {
  height: 288px;
}
.framesplit {
  display: grid;
  grid-template-columns: 160px auto;
}
.trackart {
  margin: 0px;
  border-radius: 4px;
  background-color: #42426b;
}
.trackart img {
  width: 100%;
  vertical-align: bottom;
  border-radius: 4px;
}
.name {
  margin: -16px 0px -32px 12px;
  font-family: Archivo;
  text-align: left;
  display: inline-block;
  word-break: break-word;
  text-shadow: 0px 4px #333157;
}
.name h2 {
  font-size: 24px;
}
.date {
  margin-top: -16px;
  font-size: 22px;
  color: #333157;
  text-shadow: 0px 0px;
}
.music {
  width: 100%;
  border-radius: 4px;
  margin-bottom: -4px;
}
.link1 {
  display: none;
}
@media only screen and (max-width: 960px) { /* 2 Column Thumbnails */
  .framesplit {
    display: block;
  }
  .forceheight {
    height: 448px;
  }
  .trackart {
    text-align: center;
  }
  .trackart img {
    max-width: 256px;
  }
  .name {
    margin: -16px 0px -32px 8px;
  }
}
@media only screen and (max-width: 640px) { /* 1 Column List */
  .two {
    display: block;
  }
  .framesplit {
    display: grid;
    grid-template-columns: 224px auto;
  }
  .forceheight {
    height: 288px;
  }
  .trackart img {
    max-width: 192px;
  }
  .name {
    margin: -16px 0px -32px 16px;
  }
}
@media only screen and (max-width: 640px) { /* 1 Column List Smaller */
  .framesplit {
    display: grid;
    grid-template-columns: 160px auto;
  }
  .forceheight {
    height: auto;
    margin-bottom: 32px;
  }
}