<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Indie Music Blog</title>
    <link rel="stylesheet" href="styles.css">
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
    <script defer src="script.js"></script>
    <style>
        /* Inline styles for quick prototyping */
        html {
            font-size: 20px; /* Default browser size */
        }
        body {
            font-family: 'Roboto', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9;
            color: #333;
        }
        header {
            background-color: #178AC2;
            border-bottom: 4px solid #196f99;
            color: white;
            padding: 0.1rem 1rem;
            text-align: center;
        }
        nav ul {
            list-style: none;
            padding: 0;
            display: flex;
            justify-content: center;
            gap: 1rem;
        }
        nav ul li {
            margin: 0;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
        }
        main {
            padding: 2rem;
        }
        footer {
            text-align: center;
            padding: 1rem;
            background-color: #333;
            color: white;
        }
    </style>
</head>
<body>
    <header>
        <h1>Indie Music Blog</h1>
    </header>
    <main>
        <section>
            <h2>Welcome</h2>
            <p>This site is under construction. This is just a placeholder page.</p>
            <p>Currently setting up our Bluesky account for this domain.</p>
            <p><a href="https://bsky.app/profile/indiemusicblog.com">https://bsky.app/profile/indiemusicblog.com</a>
        </section>
    </main>
    <footer>
        <p>&copy; 2024 Indie Music Blog. All rights reserved.</p>
    </footer>
</body>
</html>
