Skip to content

Commit 68726a2

Browse files
authored
Change body font-family and add font-weight styles
Updated font-family for body and added font-weight styles for headings and links.
1 parent 208ba7a commit 68726a2

1 file changed

Lines changed: 17 additions & 1 deletion

File tree

css/styles.css

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,30 @@ html {
5353

5454
body {
5555
margin: 0;
56-
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
56+
font-family: "Fira Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
5757
color: var(--text);
5858
min-height: 100vh;
5959
line-height: 1.6;
6060
overflow-x: hidden;
6161
transition: background 220ms ease, color 220ms ease;
6262
}
6363

64+
h1, h2, h3 {
65+
font-weight: 700;
66+
letter-spacing: -0.02em;
67+
}
68+
69+
body {
70+
font-weight: 400;
71+
}
72+
73+
.nav a,
74+
.button,
75+
.card-link,
76+
.final-info-link {
77+
font-weight: 500;
78+
}
79+
6480
body:not(.dark-theme) {
6581
background:
6682
radial-gradient(circle at top left, rgba(43, 187, 216, 0.12), transparent 30%),

0 commit comments

Comments
 (0)