-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
106 lines (90 loc) · 1.52 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'David Libre', sans-serif;
line-height: 1.6;
background-image: url('background.png');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
color: white;
overflow-x: hidden;
}
.container {
width: 80%;
margin: auto;
padding: 20px 0;
scroll-behavior: smooth;
}
header {
text-align: center;
margin: 30px 0;
}
.profile-image img {
border-radius: 50%;
width: 120px;
height: 120px;
object-fit: cover;
}
.header-text h1 {
font-size: 2.5rem;
}
.header-text p {
font-size: 1.2rem;
}
.section-box {
background-color: rgba(0, 0, 0, 0.6);
border-radius: 8px;
margin: 50px 0;
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
h2 {
font-size: 2.2rem;
text-align: center;
background-color: rgba(51, 51, 51, 0.8);
padding: 10px;
margin-bottom: 20px;
border-radius: 5px;
}
p {
font-size: 1.1rem;
text-align: center;
}
.project-container {
display: flex;
justify-content: space-around;
}
.project {
text-align: center;
width: 200px;
}
.project img {
width: 80px;
height: 80px;
border-radius: 50%;
margin-bottom: 10px;
}
.project a {
display: block;
color: #ffcc00;
font-size: 1.1rem;
text-decoration: none;
text-align: center;
margin-top: 5px;
}
.project a:hover {
text-decoration: underline;
}
footer {
text-align: center;
margin-top: 30px;
padding: 10px 0;
background-color: rgba(0, 0, 0, 0.8);
}
footer p {
font-size: 0.9rem;
}