diff --git a/apps/main/src/app.css b/apps/main/src/app.css
index a97e1d4..2537440 100644
--- a/apps/main/src/app.css
+++ b/apps/main/src/app.css
@@ -8,9 +8,12 @@ body {
main {
display: flex;
+ width: calc(100% - 2rem);
+ max-width: 64rem;
flex-direction: column;
+ padding-bottom: 5rem;
align-items: center;
-
+ text-align: center;
min-height: 100vh;
/* center main horizontally */
@@ -40,3 +43,56 @@ p {
b {
font-weight: 700;
}
+
+/* main logo image */
+
+.logo {
+ width: 14rem;
+ height: 14rem;
+ border-radius: 50%;
+ margin: 5rem auto;
+}
+
+/* table */
+
+table {
+ border-collapse: collapse;
+ border-spacing: 1rem 0;
+
+ margin-bottom: 1rem;
+}
+
+th {
+ background-color: #ffffff22;
+ font-weight: 700;
+}
+
+th,
+td {
+ padding: 8px;
+ text-align: center;
+ width: 10rem;
+}
+
+th:nth-child(1),
+td:nth-child(1) {
+ text-align: right;
+}
+
+th:nth-child(3),
+td:nth-child(3) {
+ text-align: left;
+}
+
+/* Socials & Profiles */
+
+.socials-and-profiles {
+ margin-top: 3rem;
+ display: flex;
+ flex-wrap: wrap;
+ gap: 1.5rem;
+}
+
+.note {
+ color: #ffffffcc;
+}
diff --git a/apps/main/src/routes/+layout.svelte b/apps/main/src/routes/+layout.svelte
index 609f924..f3ae515 100644
--- a/apps/main/src/routes/+layout.svelte
+++ b/apps/main/src/routes/+layout.svelte
@@ -17,10 +17,8 @@
{#if browser}
-
@@ -43,13 +40,7 @@