diff --git a/migrations/1725982950_players.sql b/migrations/1725982950_players.sql
new file mode 100644
index 0000000..5d24182
--- /dev/null
+++ b/migrations/1725982950_players.sql
@@ -0,0 +1,5 @@
+create table if not exists players
+(
+id integer primary key not null,
+name text not null
+)
\ No newline at end of file
diff --git a/migrations/1725983390_votes.sql b/migrations/1725983390_votes.sql
new file mode 100644
index 0000000..d812a87
--- /dev/null
+++ b/migrations/1725983390_votes.sql
@@ -0,0 +1,11 @@
+create table if not exists votes
+(
+id integer primary key not null,
+timestamp date not null,
+plus_id integer not null,
+plus_nickname text not null,
+plus_reason text not null,
+moins_id integer not null,
+moins_nickname text not null,
+moins_reason text not null
+)
\ No newline at end of file
diff --git a/static/css/index.css b/static/css/index.css
index 1cbd8f9..43d3907 100644
--- a/static/css/index.css
+++ b/static/css/index.css
@@ -22,4 +22,12 @@ body {
color: #1e1e2e;
font-family: "Segoe UI";
font-size: 20px;
+}
+
+.app > h2 {
+ color: white;
+}
+
+.app > h1 {
+ color: yellow;
}
\ No newline at end of file
diff --git a/static/html/index.html b/static/html/index.html
index b306a65..51bd227 100644
--- a/static/html/index.html
+++ b/static/html/index.html
@@ -1,9 +1,10 @@