-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (50 loc) · 1016 Bytes
/
style.css
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
@import url("https://fonts.googleapis.com/css2?family=Poppins&family=Roboto&display=swap");
body {
font-family: "Poppins", sans-serif;
background-color: #f5f3eb;
}
h1 {
margin-top: 10%;
font-size: 64px;
display: flex;
font-family: Poppins;
justify-content: center;
font-weight: 900;
color: #4e3629;
}
h2 {
display: flex;
justify-content: center;
margin-top: 10px;
font-family: roboto;
font-size: 1.7em;
font-weight: 600;
color: #4e3629;
}
a {
display: flex;
justify-content: center;
font-family: roboto;
font-size: 100px;
color: #8f4e29;
}
.flex-container {
display: flex;
flex-wrap: wrap;
margin-top: 5%;
justify-content: center;
height: 20px;
gap: 20px;
}
.flex-item {
width: 300px;
height: 150px;
background-color: #fcecd8;
border: 2px solid #a6815b;
border-radius: 10px;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5em;
}