/* Style for the full screen background */ body { margin: 0; height: 100vh; overflow: hidden; background-image: url('https://images.squarespace-cdn.com/content/5e22273f412d4c67dcaffe83/e165178d-c2db-4c20-9167-1006a59e3455/Banner+v.2+by+Ryane+s.2.png?content-type=image%2Fpng'); background-size: cover; background-position: center; position: relative; } .zoom-container { width: 100%; height: 100%; overflow: hidden; } .zoom-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease-in-out; } .zoom-container:hover .zoom-image { transform: scale(1.2); /* Adjust the scale as per your preference */ }