* {
  padding: 0;
  margin: 0;
}
.container {
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
}
.image_store {
  width: 80%;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
#a {
  order: 1;
}

#apple {
  order: 2;
}
#b {
  order: 3;
}
#bike {
  order: 4;
}
#c{
  order:5;
}
#car {
  order: 6;
}
#d {
  order: 7;
}
#doctor {
  order: 8;
}
.img_block {
  width: 300px;
  /* height: 300px; */
  height: 300px;
  border: 10px solid pink;
  border-radius: 10px;
  background-color: tomato;
  position: relative;
  /* border: 1px solid #000; */
}
span {
  display: block;
  position: absolute;
  top: 0px;
  color: white;
  display: none;
  font-size: 30px;
  padding: 5px;
  background-color: mediumseagreen;
}
img {
  /* width: 20%;
    height: 20%; */
  width: 100%;
  height: 100%;
}
img {
  display: none;
}
img:hover {
  cursor: pointer;
}

.non_image:hover {
  cursor: pointer;
}
.btns {
  margin-top: 20px;
}
#show,
#hide,#shuffle {
  padding: 20px;
  background: mediumaquamarine;
  color: white;
  border: none;
  border-radius: 10px;
}
#play {
  padding: 20px;
  background: blueviolet;
  color: white;
  border: none;
  border-radius: 10px;
}
#show,
#play,
#hide,#shuffle,
span:hover {
  cursor: pointer;
}
