diff --git a/affordable-destinations.html b/affordable-destinations.html index fccb0bee..4638da82 100644 --- a/affordable-destinations.html +++ b/affordable-destinations.html @@ -94,6 +94,85 @@ width: calc(100% - 40px); } } + body { + background-color: #f7f7fc; + overflow-x: hidden; /* Prevent horizontal scrolling */ +} + +.background-circles { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + pointer-events: none; /* Prevent interaction with the background elements */ + z-index: -1; /* Ensure circles are in the background */ +} + +.circle { + position: absolute; + background-color: rgba(167, 139, 250, 0.3); + border-radius: 50%; + opacity: 0.8; +} + +/* Define the sizes and positions of the circles */ +.circle1 { + width: 10vw; + height: 10vw; + top: 10%; + left: 20%; +} + +.circle2 { + width: 15vw; + height: 15vw; + top: 30%; + right: 10%; +} + +.circle3 { + width: 5vw; + height: 5vw; + top: 60%; + left: 40%; +} + +.circle4 { + width: 12vw; + height: 12vw; + bottom: 20%; + right: 25%; +} + +.circle5 { + width: 8vw; + height: 8vw; + bottom: 15%; + left: 10%; +} + +.circle6 { + width: 20vw; + height: 20vw; + top: 5%; + right: 15%; +} + +.circle7 { + width: 7vw; + height: 7vw; + top: 50%; + right: 50%; +} + +.circle8 { + width: 9vw; + height: 9vw; + bottom: 10%; + left: 60%; +} +
@@ -110,7 +189,7 @@