diff --git a/index.html b/index.html
index 1240339..1ae3826 100644
--- a/index.html
+++ b/index.html
@@ -12,6 +12,10 @@
+
+
+
+
LM Pub Quiz
Evaluating language models using multiple choice items
+
diff --git a/media/logo.png b/media/logo.png
new file mode 100644
index 0000000..487e766
Binary files /dev/null and b/media/logo.png differ
diff --git a/style.css b/style.css
index 042164d..f9dafda 100644
--- a/style.css
+++ b/style.css
@@ -55,6 +55,20 @@ section {
background-color: var(--nc-bg-1);
}
+header {
+ display: flex;
+ flex-wrap: wrap;
+}
+
+.logo-div {
+ flex: 0 0 145px;
+ margin-right: 2rem;
+}
+
+.title-div {
+ flex: 1 0 350px;
+}
+
header nav {
color: var(--nc-tx-2)
}
@@ -102,3 +116,11 @@ figcaption {
.dataframe {
font-size: .8rem;
}
+
+.logo {
+ width: 145px;
+ border-radius: 50%;
+ object-fit: fill;
+ height: 145px;
+ box-shadow: 2px 2px 8px 8px rgba(0,0,0,0.1);
+}