.progress_inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.progress_inner img{
    width: 30%;
}

.hall_of_progress{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.items_shelf{
    display: flex;
    justify-content:space-around;
    margin-bottom: 10px;
}

.items_shelf img{
  width: 20%;
  transition: all 0.5s;
  box-shadow: 0 0 5px 5px goldenrod ;
}
.items_shelf img:hover{
    transform: scale(1.8);
    transition: all 0.8s;
    z-index: 5;
    /* box-shadow: 0 0 5px 5px #; */
  }
.shelf{
    width: 100%;
    margin-bottom: 30px;
}

.shelf img{
    width: 100%;
}