-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
70 lines (67 loc) · 1.04 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
*{
margin: 0;
padding: 0;
box-sizing:border-box;
}
.container{
background-color: #14b7e4;
min-height:100vh;
border:10px solid#1d1e4c
}
.content{
max-width:900px;
margin:0 auto;
}
.image-container{
border-radius: 50%;
overflow:hidden;
}
.image-container img{
width:300px;
height:320px;
}
.top-section{
margin-top:50px;
display:flex;
justify-content: space-between;
align-items: flex-end;
}
.top-section h1{
font-size: 60px;
font-weight:bold;
color:#1D1e4c;
text-transform:uppercase;
}
.top-section h4{
text-align:end;
font-size:20px;
}
.about-section{
margin-top:50px;
}
.about-section h2{
font-size:70px;
font-weight:400;
margin-bottom:20px;
}
.about-section p{
font-size:20px;
line-height:30px;
letter-spacing:2px;
}
.early-life h3{
font-size:70px;
font-weight:400;
margin-bottom:20px;
}
.early-life p{
font-size:20px;
line-height:30px;
letter-spacing:2px;
}
footer{
margin:50px 0
}
footer p{
text-align:end;
}