-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
92 lines (76 loc) · 1.34 KB
/
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
@import url('https://fonts.googleapis.com/css2?family=Inter:[email protected]&display=swap');
* {
margin: 0;
padding: 0;
}
body {
background-color: #E2DEF3;
overflow-x: hidden;
font-family: "Inter", sans-serif;
}
.navbar {
background-color: #C7BFEC;
left: 0;
top: 0;
width: 100vw;
padding: 15px 40px;
position: fixed;
}
.landing {
width: 100vw;
margin-top: 150px;
margin-bottom: 150px;
display: flex;
flex-direction: column;
align-items: center;
}
.landing h2 {
font-size: 5rem;
}
.landing p {
font-size: 2rem;
}
.about {
width: 100vw;
display: flex;
justify-content: center;
}
.about p {
font-size: 1.5rem;
width: 40vw;
margin-top: 40px;
margin-right: 50px;
}
.about img {
height: 200px;
}
.projects {
width: 100vw;
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 100px;
}
.projects h2 {
font-size: 2rem;
margin-top: 80px;
margin-bottom: 60px;
}
.project {
display: flex;
margin-bottom: 50px;
}
.project img {
width: 450px;
margin-right: 80px;
}
.project h3 {
font-size: 2rem;
margin-bottom: 50px;
}
.project a {
font-size: 1.7rem;
}
.project a:hover {
color: red;
}