diff --git a/src/index.html b/src/index.html index 60ff4f8..f02e1fc 100644 --- a/src/index.html +++ b/src/index.html @@ -13,6 +13,12 @@ - Placeholder +
+ Header +
+
+ - \ No newline at end of file + diff --git a/src/styles.css b/src/styles.css index 4618cb1..7d34593 100644 --- a/src/styles.css +++ b/src/styles.css @@ -1,4 +1,27 @@ body { font-family: Arial, Helvetica, sans-serif; font-size: 18px; +} + +.header { + height: 50px; + display: flex; + justify-content: center; + align-items: center; + border-bottom: 1px solid black; +} + +.footer { + + height: 49px; + display: flex; + justify-content: center; + align-items: center; + border-top: 1px solid black; +} + +.content { + min-height: calc(100vh - 100px); + width: 720px; + margin: auto; } \ No newline at end of file