/**** BASICS ****/
  body {
    margin: 0;
    background-image: url(/backgrounds/record2.jpg);
    background-color: #000;
  }

/**** MAIN CONTENT ****/
  .grid {
    margin-bottom: 50px;
  }

  .grid img {
    float: left;
    margin: 5px;
  }

  .wrapper {
    line-height: 2em;
  }
   
  .gallery img {
    height: 200px;
    width: 200px;
  }
   
 .gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }

  .vinyl-collection {
    border: black 1px solid;
    height: 175px;
    width: 175px;
    background-size: 100%;
    margin-top: 1px;
  }

  .vinyl-collection:hover {
    transform: translateY(-5px);
  }

  img {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
    
  p {
    line-height: 2em;
  }