-
Notifications
You must be signed in to change notification settings - Fork 2
/
Style.css
45 lines (43 loc) · 924 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
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap');
.about-area{
padding-top: 5%;
}
.about-img{
position: relative;
}
.about-img:before{
position: absolute;
content: '';
right: -30px;
top: 30px;
border: 9px solid rgba(255, 255, 255, 0.5);
width: 100%;
height: 100%;
}
.about-img img{
width: 100%;
}
.about-text{
padding-top: 20%;
}
.about-text h2{
color: black;
font-family: 'Poppins', sans-serif;
font-size: 50px;
}
.about-text p{
font-family: 'Ubuntu', sans-serif;
font-size: 18px;
color: black;
}
.about-text a{
background: #b5a7f8;
color: #fff;
padding: 7px 15px;
display: inline-block;
margin-top: 20px;
}
body {
background-color: #EDEDED !important;
}