<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title><%= @title %></title>
    <style>
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            text-align: center;
            padding: 10%;
        }
    </style>
</head>
<body>
    <header>
        <h1><%= @title %></h1>
    </header>
    <main>
        <%= @main_content %>
    </main>
    <footer>
        <p>&copy; <%= DateTime.utc_now().year %> Flex Web App</p>
    </footer>
</body>
</html>
