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

        html, body {
            width: 100vw;
            height: 100vh;
            overflow: hidden;
            background-color: green;
        }

        .container {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background-color: red;
        }

        .image-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            background-color: blue;
        }

        .background-img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            
        }

        .overlay {
            position: absolute;
            background: none;
            pointer-events: auto;
        }

        .overlay-1 {
            top: 2%;
            left: -2%;
            width: 10%;
        }

        .overlay-2 {
        position: fixed;
        bottom: 20px;
        right: 130px;
        width: 120px;
        height: auto;
        z-index: 1000;
        }

        .overlay-3 {
            bottom: 0;
            left: 0;
            width: 5%;
        }

        .overlay img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
