*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
  width: 100%;
  height: 100vh;
  background-color: #e9e9e9;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
.background_grid{
    position: absolute;
    width: 100%;
    height: 100%;
}
.background_grid .grid_line{
    position: relative;
    width: 100%;
    height: calc(160px / 5);
    border-top: 1px solid #aaa;
    z-index: 1;
}
.background_grid .grid_line::before{
   content: attr(value);
   position: absolute;
   left: -40px;
   transform: translateY(-50%);
   font-size: 12px;
   color: #222;
}
canvas{
    width: 70%;
    height: 500px;
}
.container{
    position: relative;
    width: 800px;
    height: 350px;
    background-color: rgba(0,0,0, 0.1);
}
.cylinder_container{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    z-index: 3;
}
.cylinder_container .cylinder ,#cylinder {
    position: relative;
    width: 40px;
    height: 100%;
    background-color: darkgray;
    background-image: linear-gradient(90deg, rgba(255,255,255,0)0%,
                       rgba(255,255,255,0.35)50%, rgba(255,255,255,0)100%);
    border-radius: 100px /30px;
    bottom: -13px;
    z-index: 4;
    animation: animate 2s cubic-bezier(1,0,0.5,1);
}
@keyframes animate{
    0%{
        height: 0%;
    }
    100%{
        height: 100%;
    }
}
.cylinder_container .cylinder::before,
#cylinder_container #cylinder::before{
    content: '';
    position: absolute;
    width: inherit;
    height: 12px;
    top: 0;
    left: 0;
    border-radius: 100px / 30px;
    background-color: #929294;
}
.cylinder p,#cylinder p{
    margin-top: -15px;
    font-size: 12px;
    text-align: center;
    color: #000;
}
.cylinder p:hover{
    font-size: 15px;
    cursor: pointer;
}
.heading{
    font-size: 50px;
    padding: 40px;
    text-align: center;
    color: black;
    text-shadow: 1px -1px 1px lightblack,
                -1px 1px 1px lightblack;
}
line{
    position: absolute;
    left: 20px;
    top: 20px;
}
.labels{
    position: absolute;
    width: 100%;
    bottom: -65px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
}
.labels div{
    color: #222;
    text-transform: uppercase;
    text-align: center;
    font-weight: 80;
   transform: rotate(-30deg);
}
.stage{
    position: absolute;
    width: calc(100% + 14px);
    height: 16px;
    top: 100%;
    left: 0;
    background-color: rgba(0,0,0, 0.2);
    clip-path:polygon(0% 0%, 98.3% 0%, 99.5% 100%, 0.7% 100%);
    z-index: 2;
}
