diff --git a/src/modules/cv.html b/src/modules/cv.html
index cbaa1d1..7c8311f 100644
--- a/src/modules/cv.html
+++ b/src/modules/cv.html
@@ -17,9 +17,10 @@
gap: 20px;
text-align: left;
width: auto;
- max-width: 900px;
+ max-width: 1100px;
+ margin: 100px 0px;
- @media (max-width: 750px) {
+ @media (max-width: 900px) {
grid-template-columns: 1fr;
}
diff --git a/src/styles/fonts/notomono/Noto-Sans-Mono-Bold.ttf.woff b/src/styles/fonts/notomono/Noto-Sans-Mono-Bold.ttf.woff
new file mode 100644
index 0000000..a338b91
Binary files /dev/null and b/src/styles/fonts/notomono/Noto-Sans-Mono-Bold.ttf.woff differ
diff --git a/src/styles/text.css b/src/styles/text.css
index 0c8becd..45ac62d 100644
--- a/src/styles/text.css
+++ b/src/styles/text.css
@@ -4,6 +4,12 @@
font-weight: normal;
font-style: normal;
}
+@font-face {
+ font-family: "notosansmono_bold";
+ src: url("./fonts/notomono/Noto-Sans-Mono-Bold.ttf.woff") format("woff");
+ font-weight: bold;
+ font-style: normal;
+}
body,
pre {
font-family: "notomono", monospace;
@@ -76,5 +82,6 @@ a {
}
b {
- font-weight: 900;
+ font-family: "notosansmono_bold", "notomono", monospace;
+ /* font-weight: 900; */
}