body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: sans-serif;
  background:url('');
}

.grid-container {
  columns: 5 200px;
  column-gap: 1.5rem;
  width: 90%;
  margin: 0 auto;
  
  div {
    width: 150px;
    margin: 0 1.5rem 1.5rem 0;
    display: inline-block;
    width: 100%;
    border: solid 2px hotpink;
    padding: 5px;
    box-shadow: 5px 5px 0px plum;
    border-radius: 5px;
    background:url('https://cocokitty200.lol/Resources/Backgrounds/bgfancy.jpg');
    img {
      width: 100%;
      border-radius: 5px;
    }
    p {
      margin: 5px 0;
      padding: 0;
      text-align: center;
      font-style: italic;
    }
  }
}




