diff --git a/src/app/app.component.html b/src/app/app.component.html
index 332550e..624fc4d 100644
--- a/src/app/app.component.html
+++ b/src/app/app.component.html
@@ -1,3 +1,5 @@
-
+
+
+
diff --git a/src/app/app.component.scss b/src/app/app.component.scss
index e69de29..3f6b34b 100644
--- a/src/app/app.component.scss
+++ b/src/app/app.component.scss
@@ -0,0 +1,17 @@
+app-header {
+ width: 100%;
+}
+
+main {
+ flex-grow: 1;
+ min-width: 100%;
+ width: fit-content;
+ box-sizing: border-box;
+ padding: 2rem;
+
+ @media (min-width: 60rem) {
+ width: 80%;
+ min-width: 60rem;
+ max-width: 80rem;
+ }
+}
diff --git a/src/styles.scss b/src/styles.scss
index e040c88..a03f579 100644
--- a/src/styles.scss
+++ b/src/styles.scss
@@ -1,9 +1,9 @@
@use '@angular/material' as mat;
-
html,
body {
height: 100%;
+ min-height: 100%;
margin: 0;
background: var(--mat-sys-surface);
@@ -19,3 +19,11 @@ body {
density: 0));
}
+
+app-root {
+ height: 100%;
+ width: 100%;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+}