<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" integrity="sha512-NmLkDIU1C/C88wi324HBc+S2kLhi08PN5GDeUVVVC/BVt/9Izdsc9SVeVfA1UZbY3sHUlDSyRXhCzHfr6hmPPw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
    <link rel="stylesheet" href="css/style.css">
    <title>2 section flexbox layout</title>
</head>
<body>
    <div class="wrapper">
        <header class="header">Header: Fixed height</header>
        <section class="content">
            <div class="columns">
                <main class="main">Content: Flexible width</main>
                <aside class="sidebar-first">Sidebar: Fixed width</aside>
                <aside class="sidebar-second">Sidebar: Fixed width</aside>
            </div>          
        </section>
        <footer class="footer">Footer: Fixed height</footer>
    </div>
</body>
</html>