diff --git a/Untitled.mp4 b/Untitled.mp4 new file mode 100644 index 0000000..d9987e8 Binary files /dev/null and b/Untitled.mp4 differ diff --git a/exp.html b/exp.html index dd7c10d..f83a27b 100644 --- a/exp.html +++ b/exp.html @@ -53,103 +53,58 @@ overflow: hidden; /* Hide any overflowing content */ } -section { - padding:30px; - color: #fff; -} - -/* ... (previously defined styles) ... */ + /* Add this CSS to your existing styles.css or create a new CSS file */ + + /* Add this CSS to your existing styles.css or create a new CSS file */ -/* Main content styles */ #places { - background-color: #000000; - text-align: center; - /* padding: 50px 0; */ + padding: 40px; } .category-buttons { - margin-bottom: 30px; + display: flex; + justify-content: center; + margin-bottom: 20px; } .category-btn { - padding: 8px 16px; - font-size: 18px; - background-color: #fff; + background-color: #f39c12; + color: #fff; border: none; border-radius: 4px; + padding: 10px 20px; + margin: 0 5px; cursor: pointer; transition: background-color 0.3s; } .category-btn.active { - background-color: #ddd; -} - -.places-images { - display: grid; - grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); - grid-gap: 20px; - justify-items: center; - align-items: center; - margin-top: 30px; -} - -.place { - display: flex; - flex-direction: column; -} - -.place img { - width: 100%; - height: auto; - max-height: 200px; - border-radius: 8px; - object-fit: cover; - box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); + background-color: #e74c3c; } -.place p { - font-size: 16px; - color: #fff; - margin-top: 10px; -} - - .places-cards { display: grid; - grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); grid-gap: 20px; - justify-items: center; - align-items: center; - margin-top: 30px; } .place-card { - background-color: #000000; - padding: 20px; + background-color: #fff; border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); - text-align: center; + overflow: hidden; + transition: transform 0.3s; } .place-card img { - width: 100%; - height: auto; - max-height: 200px; - border-radius: 8px; + max-width: 100%; + max-height: 100%; object-fit: cover; - transition: transform 0.3s; } -.place-card img:hover { - transform: scale(1.1); -} -.place-card h3 { - font-size: 16px; - margin-top: 10px; - color: #ffffff; -} - +.place-card:hover { + transform: scale(1.05); +} @@ -157,13 +112,14 @@ position: relative; width: 100%; height:88vh; - overflow: hidden; + overflow: hidden; } .banner-images { position: absolute; display: flex; animation: scrollImages 20s linear infinite; /* Adjust the time as needed */ + margin: 30px; } .banner-images img { @@ -210,11 +166,11 @@