diff --git a/index.html b/index.html
index 750ac7e..9a59e18 100644
--- a/index.html
+++ b/index.html
@@ -23,15 +23,16 @@
.map-container {
width: 100%;
display: flex;
- flex-direction: column;
+ flex-direction: column; /* Change to column for vertical stacking */
+ align-items: center; /* Center the iframes horizontally */
flex: 1;
- align-items: center;
}
iframe {
- width: 960px; /* 800px + 20% */
- height: 720px; /* 600px + 20% */
+ flex: 1;
border: none;
- margin-bottom: 10px;
+ height: 55vh; /* Increase height by 10% */
+ width: 800px; /* Set fixed width */
+ max-width: 100%; /* Ensure it doesn't overflow on smaller screens */
}
.buttons {
width: 100%;
@@ -45,7 +46,7 @@
cursor: pointer;
}
-
+