aboutsummaryrefslogtreecommitdiff
path: root/src/scss/style.scss
blob: 42f57275a85e875624e0781c102429bdd3d58684 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
@use "reset";

body {
  font-size: 24px;
  font-family: sans-serif;
}

h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  font-family: serif;
}

h2 {
  font-size: 2rem;
  font-weight: bold;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

header {
  height: 100vh;
  box-sizing: border-box;
  padding: 2.5% 5%;
  color: white;
  background-image: url("/home.jpg");
  background-size: cover;
  background-position: center;
}

.tags {
  display: flex;
  gap: 1rem;
  font-size: 1.75rem;
}