-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
78 lines (77 loc) · 1.26 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: Georgia, 'Times New Roman', Times, serif;
}
header{
background-color:white;
padding: 20px;
height: auto;
max-width: auto;
width: auto;
background-repeat: no-repeat;
background-size: cover;
position: relative;
margin: 0px;
}
.container{
display: flex;
justify-content: space-between;
padding: 30px;
}
.image{
width: auto;
}
img{
width: 600px;
height: 700px;
border-radius: 50px;
padding-left: 100px;
}
.biography{
/* padding: 20px; */
margin: 10px ;
text-align: left;
/* padding-top: 200px; */
width: 50%;
padding-right: 100px;
}
h1{
font-size: 3.5em;
padding-bottom: 50px;
}
span{
color: blueviolet;
}
h2{
font-size: 40px;
padding-bottom: 30px;
}
p{
font-size: 18px;
padding-bottom: 10px;
}
br{
padding-top: 40px;
}
button{
font-size: 1em;
background-color: blueviolet;
color: white;
font-weight: 500;
margin-top: 10px;
border: 2px solid blueviolet;
border-radius: 10px;
padding: 15px;
}
button:hover{
background-color: black;
color: white;
font-weight: 500;
border: 2px solid black ;
transition: 0.3s;
font-weight: 900;
}