body {
    background-color: white;
    /* overflow: hidden; */
}
.img-container{
    display: flex; 
    flex-wrap: wrap;
    background-color: white;
    align-items: center;
    height: 100%;
}
div.thumbnail,div.background,div.overlay,div.scene{
    padding:4px;
    border: 2px solid lightgray;
}

.thumbnail img{
    max-height: 100px;
    display:inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    overflow:hidden;
    flex-basis: content;
    margin:1px;
    
}


img.selected {
    border: 4px solid red;
    max-height: 130px;
}

.background img{
    max-height: 100px;
    display:inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    overflow:hidden;
    flex-basis: content;
}

.scene img{
    max-height: 100px;
    display:inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    overflow:hidden;
    flex-basis: content;
}

.overlay img{
    max-height: 100px;
    display:inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    overflow:hidden;
    flex-basis: content;
    margin:2px;
    
    filter: drop-shadow(12px 12px 25px rgba(0, 0, 0, 0.9)) blur(0px);
}
[class="grayscale"]:checked ~  .overlay { filter: grayscale(1); }
[class="blur-background"]:checked ~  .background { filter: blur(1px); }

.overlay img.selected{
    max-height: 150px;
    display:inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    overflow:hidden;
    flex-basis: content;
}

img.blank{
    border: 1px dashed black;
}
img.blank.selected{
    border: 4px dashed red;
}

textarea {
    font-family: 'Bungee Inline', cursive;
    background-color: black;
    color:white;
}

div.message{
    font-size: larger;
    padding: 10px;
    background-color: lightgoldenrodyellow;
    border: 2px lightcoral dashed;
}

img.screenshot{
    max-height: 300px;
    max-width: 80vw;
}