diff --git a/src/components/Nav.js b/src/components/Nav.js
index 39fb1cf..a69b786 100644
--- a/src/components/Nav.js
+++ b/src/components/Nav.js
@@ -1,15 +1,17 @@
import React from 'react'
import styled from 'styled-components'
-import { Container } from './common'
+import { Container, Flex } from './common'
-const Nav = styled.nav`
- padding: 0;
- display: flex;
- align-items: center;
+const Nav = styled.div`
+ background: white;
+ position: sticky;
+ top: 0;
`
export default (props) => (
-
-
-
+
)