-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (56 loc) · 1017 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
57
58
59
60
61
62
63
64
*{
margin:0px;
padding:0px;
box-sizing: border-box;
}
a:link, a:visited{
text-decoration: none;
}
a{
font-weight: 900;
font-size: 16px;
line-height: 24px;
text-transform: uppercase;
}
:root {
--body-bg-color: #FAF7FD;
--purple: #BB99DD;
}
.container *{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin:auto;
width: 100vw;
gap:16px;
}
header .container img{
width: 200px;
border-radius: 50%;
margin-bottom: 22px;
border: 2px solid #BB99DD;
padding: 7px;
}
header .container {
margin-top: 4%;
margin-bottom:33px ;
}
body{
background-color: var(--body-bg-color);
color: var(--purple);
font-family: 'Poppins', sans-serif;
}
.container a{
max-width: 326px;
height: 49px;
border: 2px solid #BB99DD;
border-radius: 4px;
}
footer div{
text-align: center;
display: flex;
justify-content: center;
margin-top: 50px;
gap: 29px;
}