* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
}

#main-image {
    width: 550px;
    height: 450px;
    padding: 20px;
    object-fit: cover;
}
.image-list {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100px;
    height: 100px;
}

.image-list .small-image {
    width: 100%;
    height: 100%;
}