html, body { height: 100%; margin: 0; padding: 0; display: block; } #pano-information { float: right; height: 100%; background-color: aqua; width: 40%; } #street-view { float: left; height: 100%; width: 100%; } .basket { position: absolute; width: 300px; height: 300px; background-image: url('/images/korb.png'); background-position: center; background-size: 100% 100%; background-repeat: no-repeat; } #wak-lab { position: absolute; width: 300px; height: 300px; background-image: url('/images/wak-lab.png'); background-position: center; background-size: 100% 100%; background-repeat: no-repeat; } #dog { position: absolute; width: 300px; height: 300px; background-image: url('/images/dog.png'); background-position: center; background-size: 100% 100%; background-repeat: no-repeat; } #cat { position: absolute; width: 300px; height: 300px; background-image: url('/images/cat.png'); background-position: center; background-size: 100% 100%; background-repeat: no-repeat; } .scale { transform: scale(2.5); } .basket-shape { position: absolute; width: 200px; height: 80px; left: 50px; top: 90px; border-radius: 50%; } .basket-grass { position: absolute; width: 220px; height: 130px; left: 45px; top: 50px; border-radius: 50%; background-image: url('/images/wiese.png'); background-position: center; background-size: 100% 100%; background-repeat: no-repeat; } .egg { position: absolute; font-size: 60%; color: rgb(102, 98, 98); display: flex; justify-content: center; align-items: center; width: 35px; height: 25px; border-radius: 50%; border: 0.2px solid #ece4da; cursor: pointer; transition: transform 0.3s; } .egg-container { position: relative; width: 40px; height: 60px; overflow: hidden; } .egg:hover { z-index: 10; } #overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); z-index: 999; display: none; } #egg-preview { display: flex; justify-content: center; align-items: center; margin: 10px; } #popup { display: flex; justify-content: center; align-items: center; position: fixed; font-size: 22px; width: 60%; top: 50%; left: 50%; transform: translate(-50%, -50%); background-color: white; padding: 20px; border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); z-index: 1000; display: none; } #donate-button { display: flex; justify-content: center; align-items: center; } button { width: 100%; margin-top: 10px; padding: 5px 10px; cursor: pointer; }