body {
  margin: 0;
  background: url(images/space.gif);
  background-position: center;
  background-repeat: no-repeat; 
  background-size: cover; 
  background-attachment: fixed; 
}

/* topbar */
.topbar {
  width: 1000px;
  height: 130px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 0;
  padding: 0;
  text-align: center;
}

.topbar #mtitle {
  width: 293px;
  margin: auto;
}

.topbar p {
  color: white;
  font-family: 'Arial Narrow';
  margin: 0 10px;
  letter-spacing: 0.2em;
}

/* wrapper */
.vinylbox {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 0;
}

.div1 { text-align: center; grid-area: 1 / 1 / 2 / 2; }
.div2 { text-align: center; grid-area: 1 / 2 / 2 / 3; }
.div3 { text-align: center; grid-area: 1 / 3 / 2 / 4; }
.div4 { text-align: center; grid-area: 1 / 4 / 2 / 5; }

/* cd style */

lol,
.img2 {
/* album's cover image u can change the size! */
  position: relative;
  width: 100px;
  height: 100px;
  background-color: black;
  color: black;
  z-index: 998;
  margin-top: 30px;
}

.img1 {
/* cd image u can change the size too */
  position: relative;
  width:auto;
  height:90px;
  left: -56px;
  top: -4px;
  z-index: 800;
  -webkit-animation: spin 2s linear infinite;
  -webkit-animation: spin 4s linear infinite;
  -moz-animation: spin 4s linear infinite;
  animation: spin 4s linear infinite;
}

  .img1 hover {
    cursor: help;
  }

  @-moz-keyframes spin {
    100% {
      -moz-transform: rotate(360deg);
    }
  }

  @-webkit-keyframes spin {
    100% {
      -webkit-transform: rotate(360deg);
    }
  }

  @keyframes spin {
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }

  .img1:hover {
    /* this makes the cd stop spinning when hovering! */
    -webkit-animation: pop 0.3s ease;
  }

/* back button */
#backbtn {
  position: fixed;
  bottom: 0;
  margin-bottom: 15px;
  margin-left: 15px;
}