<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Webgrafikk.com - Your Web Design Partner</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            background: #f4f4f4;
            color: #333;
        }
        .container {
            width: 80%;
            margin: auto;
            overflow: hidden;
            padding: 20px 0;
        }
        header {
            background: #333;
            color: #fff;
            padding-top: 20px;
            min-height: 70px;
            border-bottom: #77aaff 3px solid;
        }
        header h1 {
            text-align: center;
            margin: 0;
            padding-bottom: 10px;
        }
        .hero {
            background: #77aaff;
            color: #fff;
            text-align: center;
            padding: 50px 0;
            margin-bottom: 20px;
        }
        .hero h2 {
            margin: 0;
            font-size: 2.5em;
        }
        .hero p {
            font-size: 1.2em;
        }
        .content {
            background: #fff;
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        footer {
            text-align: center;
            padding: 20px;
            background: #333;
            color: #fff;
        }
    </style>
</head>
<body>
    <header>
        <div class="container">
            <h1>Webgrafikk.com</h1>
        </div>
    </header>

    <section class="hero">
        <div class="container">
            <h2>Stunning Web Design for Your Business</h2>
            <p>We create beautiful, functional, and responsive websites that bring your vision to life.</p>
        </div>
    </section>

    <div class="container">
        <section class="content">
            <h3>Our Services</h3>
            <p>At Webgrafikk.com, we specialize in crafting custom web solutions tailored to your needs. From initial concept to launch, we're with you every step of the way.</p>
            <ul>
                <li>Responsive Web Design</li>
                <li>E-commerce Solutions</li>
                <li>Content Management Systems (CMS)</li>
                <li>Website Maintenance & Support</li>
                <li>Search Engine Optimization (SEO)</li>
            </ul>
        </section>

        <section class="content">
            <h3>Why Choose Us?</h3>
            <p>We combine creativity with technical expertise to deliver websites that not only look great but also perform exceptionally. Your success is our priority!</p>
            <p>Building digital experiences since 20XX. Currently, it's the year 2026.</p>        </section>
    </div>

    <footer>
        <div class="container">
            <p>&copy; 2026 Webgrafikk.com. All rights reserved.</p>
        </div>
    </footer>
</body>
</html>