diff --git a/bizmatch-static/index-bg.webp b/bizmatch-static/index-bg.webp new file mode 100644 index 0000000..54d8c6d Binary files /dev/null and b/bizmatch-static/index-bg.webp differ diff --git a/bizmatch-static/index.html b/bizmatch-static/index.html new file mode 100644 index 0000000..02d036f --- /dev/null +++ b/bizmatch-static/index.html @@ -0,0 +1,18 @@ + + + + + + Under Construction + + + +
+

Welcome to bizmatch.net!

+

We're currently under construction to bring you a new and improved experience. Our website is diligently being developed to ensure that we meet your needs with the highest quality of service.

+

Please check back soon for updates. In the meantime, feel free to contact us for any inquiries or further information.

+

Thank you for your patience and support!

+

The bizmatch.net Team

+
+ + diff --git a/bizmatch-static/style.css b/bizmatch-static/style.css new file mode 100644 index 0000000..0c50a1f --- /dev/null +++ b/bizmatch-static/style.css @@ -0,0 +1,52 @@ +body, html { + margin: 0; + padding: 0; + width: 100%; + height: 100%; + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; + background-color: #e6f7ff; /* Hintergrundfarbe leicht blau */ + color: #05386b; /* Dunkelblau für Text */ + display: flex; + align-items: center; + justify-content: center; + text-align: center; + background-image: url(./index-bg.webp); + background-size: cover; + background-position: center; + height: 100vh; +} + +.container { + max-width: 600px; + padding: 40px; + background-color: white; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); + border-radius: 10px; + border-left: 5px solid #379683; /* Grüne Akzentlinie links */ + +} + +h1 { + color: #379683; /* Grünton für Überschriften */ +} + +p { + line-height: 1.6; + margin: 20px 0; +} + +a { + color: #5cdb95; /* Helles Grün für Links */ + text-decoration: none; + font-weight: bold; +} + +a:hover { + text-decoration: underline; +} + +@media (max-width: 768px) { + .container { + padding: 20px; + } +}