-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
51 lines (51 loc) · 928 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
@import url("https://fonts.googleapis.com/css2?family=Vollkorn:wght@500&display=swap");
* {
box-sizing: border-box;
color: #333;
}
html {
background: url("./assets/images/background.jpg") no-repeat center center
fixed #000;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
h1,
h2,
h3 {
font-family: "Vollkorn", serif;
}
#name {
margin-top: 20%;
font-size: 4em;
color: #06518b;
}
body {
margin: 0;
display: flex;
justify-content: center;
align-items: center;
}
#description {
margin-top: 8%;
font-size: 1.5em;
color: #042f66;
}
#description1 {
margin-top: 2%;
}
#links {
display: flex;
flex: 1;
/* justify-content: stretch; */
/* align-self: center; */
/* justify-items: normal; */
flex-direction: row;
}
img {
padding-top: 15px;
padding-right: 10px;
width: 50px !important;
height: 50px !important;
}