* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.container {
    width: 100%;
    height: 100vh;
    background: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.gallery {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.img-box {
    width: 140px;
    height: 630px;
    margin: 8px;
    border-radius: 20px;
    background: url(assets/img/portfolio/ASI-32.jpg);
    background-size: cover;
    background-position: center;
    transition: width 0.7s;
}

.img-box:nth-child(1) {
    background: url(assets/img/portfolio/ASI-4.jpg);
    background-size: cover;
    background-position: center;
}

.img-box:nth-child(2) {
    background: url(assets/img/portfolio/ASI-23.jpg);
    background-size: cover;
    background-position: center;
}

.img-box:nth-child(3) {
    background: url(assets/img/portfolio/ASI-38.jpg);
    background-size: cover;
    background-position: center;
}

.img-box:nth-child(4) {
    background: url(assets/img/portfolio/ASI-74.jpg);
    background-size: cover;
    background-position: center;
}

.img-box:nth-child(6) {
    background: url(assets/img/portfolio/ASI-96.jpg);
    background-size: cover;
    background-position: center;
}

.img-box:nth-child(7) {
    background: url(assets/img/portfolio/ASI-108.jpg);
    background-size: cover;
    background-position: center;
}

.img-box:nth-child(8) {
    background: url(assets/img/portfolio/ASI-135.jpg);
    background-size: cover;
    background-position: center;
}

.img-box:nth-child(9) {
    background: url(assets/img/portfolio/ASI-136.jpg);
    background-size: cover;
    background-position: center;
}

.img-box:hover {
    width: 400px;
    cursor: pointer;
}