.container{
    height: 37vmin;
    width: 60vmin;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0.3vw 0.5vw -0.01vw rgb(61, 61, 61);
    transition: 0.4s;
}
.container:hover {
    transform: scale(1.05);
}

.container img{
    width: 100%;
    height: 100%;
    position: absolute;
    margin: 0;
}

#my-img{
    clip-path: polygon(0 0 , 50% 0, 50% 100%, 0 100%);
}

.slider{
    position: relative;
    -webkit-appearance: none;
    width: calc( 100% + 40px);
    height: 100%;
    margin-left: -20px;
    background-color: transparent;
    outline: none;
}
.slider::-webkit-slider-thumb{
    -webkit-appearance: none;
    height: 45px;
    width: 45px;
    background: url("slider-icon.svg"),
    rgba(255,255,255,0.3);
    border: 4px solid white;
    border-radius: 50%;
    background-size: contain;
    cursor: pointer;
}

h1{
    color:white;
    text-shadow: 0.08vw 0.1vw 0.3vw #000000;
    text-align:center;
}
