diff --git a/Dockerfile b/Dockerfile
index e4029e9..ff17805 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,3 +1,4 @@
FROM docker.io/nginx:latest
COPY nginx.conf /etc/nginx/conf.d/default.conf
-COPY static/ /usr/share/nginx/html/
+COPY html/ /usr/share/nginx/html/
+COPY static/ /usr/share/nginx/static/
diff --git a/static/about.html b/html/about.html
similarity index 100%
rename from static/about.html
rename to html/about.html
diff --git a/static/index.html b/html/index.html
similarity index 100%
rename from static/index.html
rename to html/index.html
diff --git a/static/resume.html b/html/resume.html
similarity index 97%
rename from static/resume.html
rename to html/resume.html
index e138268..f231498 100644
--- a/static/resume.html
+++ b/html/resume.html
@@ -35,7 +35,7 @@
4th year EPITECH student
-
+
EPITECH Toulouse - Promo 2026
diff --git a/static/style.css b/html/style.css
similarity index 99%
rename from static/style.css
rename to html/style.css
index a197090..6a1fee0 100644
--- a/static/style.css
+++ b/html/style.css
@@ -84,6 +84,7 @@ h4 {
font-size: 0.75em;
font-style: italic;
margin-left: 1em;
+ color: #fff;
}
#content {
diff --git a/nginx.conf b/nginx.conf
index bc98de6..dccd762 100644
--- a/nginx.conf
+++ b/nginx.conf
@@ -7,4 +7,8 @@ server {
root /usr/share/nginx/html;
index index.html;
}
+
+ location /static/ {
+ root /usr/share/nginx/;
+ }
}