#halloween-container {
    height: 100vh;
    width: 100vw;
    padding: 1em;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    position: absolute;
    left: 0px;
    top: 0px;
    pointer-events: none;
}

.witch {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 240px;
    height: 240px;
}

.witch > img {
    display: block;
    width: 100%;
}