<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Bayern Builders - Home Remodeling in Chicago Land</title>

    <style>

        body {

            font-family: Arial, sans-serif;

            margin: 0;

            padding: 0;

            box-sizing: border-box;

        }

 

        .header {

            background-color: #333;

            color: #fff;

            padding: 10px 0;

            text-align: center;

        }

 

        .logo img {

            height: 50px;

        }

 

        .hero {

            background-color: #f4f4f4;

            text-align: center;

            padding: 50px 0;

        }

 

        .hero h1 {

            font-size: 2.5em;

            margin: 0 0 20px;

        }

 

        .hero p {

            font-size: 1.2em;

            margin: 0 0 20px;

        }

 

        .btn {

            display: inline-block;

            padding: 10px 20px;

            background-color: #007bff;

            color: #fff;

            text-decoration: none;

            border-radius: 5px;

        }

 

        .footer {

            background-color: #333;

            color: #fff;

            text-align: center;

            padding: 10px 0;

            position: fixed;

            width: 100%;

            bottom: 0;

        }

    </style>

</head>

<body>

    <header class="header">

        <div class="logo">

            <img src="logo.png" alt="Bayern Builders Logo">

        </div>

        <h1>Bayern Builders</h1>

    </header>

 

    <section class="hero">

        <h1>Welcome to Bayern Builders</h1>

        <p>Expert Home Remodeling Services in the Chicago Land Area</p>

        <a href="http://www.bayernbuilders.com" target="_blank" class="btn">Visit Main Site</a>

    </section>

 

    <footer class="footer">

        <p>&copy; 2024 Bayern Builders. All Rights Reserved.</p>

    </footer>

</body>

</html>