* {
    margin: 10;
    padding: 10;
    box-sizing: border-box;
    
}
.body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #f0f0f0;
    overflow-x: hidden;
    
    

}

.container .img_container .main_img {
        width: 100;
        height: 100%;
       border-radius:5px;
       box-shadow: 0 5px 5px rgba(1, 23, 46, 0.6);
       object-fit: cover;
    
}

.thumbnail_container {
    height: 80px;
    display :flex;
    justify-content: space-between;
}

.thumbnail_container .thumbnail {
        overflow: hidden;
        width: 80px;
        height: 80px;
       border-radius:5px;
       cursor: pointer;
     
       opacity: .7;
       transition: .3s;
       
}

.container .thumbnail_container .thumbnail: hover {
    overflow: hidden;
    opacity: 1;
}

.active {
    opacity: 1;
    box-shadow: 0 5px 5px rgba(1, 23, 46, 0.6);
}





.body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #f5f8ff;
}

.container .img_container {
    width: 350px;
    height: 450px;
    margin-bottom: 20px;
    overflow: hidden;
    
}
 
.container .img_container .main_img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 5px rgba(1, 23, 46, 0.6);
  
}

.container .thumbnail_container {
    overflow: hidden;
    height: 80px;
    display: flex;
    justify-content: space-between;
}


.container .thumbnail_container .thumbnail {
    overflow: hidden;
    width: 80px;
    height: 80px;
    border-radius: 5px;
    cursor: pointer;
  
    opacity: .7;
    transition: .3s;
}

.container .thumbnail_container .thumbnail:hover {
    opacity: 1;
}

.active {
    opacity:  1;
    box-shadow: 0 5px 5px rgba(1, 23, 46, 0.6);
}