* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}

#bouncing-container {
    width: 100%;
    height: 100%;
    position: relative;
}

#bouncing-image {
    position: absolute;
    width: 500px;
    height: 500px;
    pointer-events: none;
}
