<!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">
            <div class="block-logo">logo</div>
        </header>
        <section class="content">
            <div class="columns">
                <main class="main">
                    <div class="block-form">Form fields</div>
                </main>
                <aside class="sidebar-first">Sidebar first: Fixed width</aside>
                <aside class="sidebar-second">Sidebar second: Fixed width</aside>
            </div>          
        </section>
        <footer class="footer">
            <div class="block-contact-info">Contact info</div>
        </footer>
    </div>
</body>
</html>