body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f7f7f7;
}

.container {
    width: 1610px;
    height: 330px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.item {
    width: 20%;
    cursor: pointer;
    transition: 0.3s;
}

.item img {
    width: 100%;
    height: auto;
}

.item.selected {
    transform: scale(1.05);
}
