diff --git a/src/App.vue b/src/App.vue
index 2588240..a3c56fa 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -50,16 +50,21 @@ header, h1, h2, h3, footer a {
 }
 h1 {
   text-align: center;
-  margin: 21px 0;
+  margin: 1.4rem 0;
   font-size: 2rem;
 }
 h2 {
-  margin: 19px 0;
+  margin: 1.2rem 0;
+}
+h3 {
+  margin: 1rem 0;
+}
+h2, h3 {
   width: 80%;
   border-bottom: solid 2px navy;
 }
 p {
-  margin: 16px 0;
+  margin: 1rem 0;
 }
 #content {
   margin: 0 1rem;
@@ -70,7 +75,6 @@ p {
 @media all and (min-width: 68rem) {
   .content {
     width: 66rem;
-    justify-content: space-around;
   }
 }
 .hdr {
@@ -126,10 +130,6 @@ footer {
 footer a:link, footer a:visited {
 	color: black;
 }
-/*footer a:hover {
-	border-bottom: none;
-	color: maroon;
-}*/
 .alignleft {
 	float:left;
 	padding-right: 5px;
diff --git a/src/components/Application.vue b/src/components/Application.vue
index 6136e9c..f626d1b 100644
--- a/src/components/Application.vue
+++ b/src/components/Application.vue
@@ -1,30 +1,30 @@
 
-  article.content
-    page-title(:title='pageTitle')
-    h1.
-      {{ application.name }}
-      #[br]
-      
-        #[a(v-if='application.active || application.linkInactive' :href='application.url') {{ application.url }}]
-        #[span(v-if='!application.active && !application.linkInactive') {{ application.url }}]
-      
+div
+  page-title(:title='pageTitle')
+  h1.
+    {{ application.name }}
+    #[br]
+    
+      #[a(v-if='application.active || application.linkInactive' :href='application.url') {{ application.url }}]
+      #[span(v-if='!application.active && !application.linkInactive') {{ application.url }}]
+    
+  div.app-info
     aside: img(:src='imageLink')
-    p(v-for='(p, idx) in application.paragraphs' :key='idx' v-html='p')
-    p(v-for='(act, idx) in application.activity' :key='idx' :act='act')
-      strong {{ act.heading }}
-      |  – 
-      span(v-html='act.narrative')
-    template(v-if='application.quotes')
-      hr
-      strong What They Say
-      blockquote
-        p.quote(v-html='application.quotes.full')
-        p.source.
-          — #[strong {{ application.quotes.name }}], {{ application.quotes.from }}
-    p(v-for='(p, idx) in application.footnotes' :key='idx' v-html='p')
-    p
-      br
-      router-link(:to="{ name: 'ApplicationList' }") « Back to All Solutions
+    article.content
+      p(v-for='(p, idx) in application.paragraphs' :key='idx' v-html='p')
+      div(v-for='(act, idx) in application.activity' :key='idx' :act='act')
+        h3 {{ act.heading }}
+        p(v-html='act.narrative')
+      div(v-if='application.quotes')
+        h3 What They Say
+        blockquote
+          p.quote(v-html='application.quotes.full')
+          p.source.
+            — #[strong.app-info-heading {{ application.quotes.name }}], {{ application.quotes.from }}
+      p(v-for='(p, idx) in application.footnotes' :key='idx' v-html='p')
+      p
+        br
+        router-link(:to="{ name: 'ApplicationList' }") « Back to All Solutions