.preview-container{
    padding: 2vh;
}

.preview-item {
    width: auto;
    height: auto;
    padding: 2vh;
    margin: 2vh 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all .2s;
    border-radius: 8px;
    transform: scale(0.99);
    border: 1px solid white;
    box-shadow: 0px 0px 5px 1px white;
}

.preview-container .preview-item:first-child{
    margin: 0 0 2vh 0;
}

.preview-container .preview-item:last-child{
    margin: 2vh 0 0 0;
}

.preview-container .preview-item:only-child{
    margin: 0;
}

.preview-item img {
    width: 100%;
    height: auto; 
    object-fit: cover;
    object-position: center;
    border: 1px solid black;
}

