* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: rgb(228,252,241);
}
.container .img_container {
    width: 410px;
    height: 480px;
    margin-bottom: 10px;
    margin-top: 10px;
}
.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;
}
.container .thumbnail_container {
    height: 70px;
    display: flex;
    justify-content: space-between;
}
.container .thumbnail_container .thumbnail {
    width: 70px;
    height: 70px;
    border-radius: 5px;
    cursor: pointer;
    object-fit: cover;
    opacity: 0.7;
    transition: 0.3s;
}
.container .thumbnail_container .thumbnail:hover {
    opacity: 1;
}
.active {
    opacity: 1 !important;
    box-shadow: 0 5px 5px rgba(1, 23, 46, 0.6);
}