-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout.css
79 lines (72 loc) · 1.35 KB
/
About.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
*{
padding: 0;
margin:0;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
box-sizing: border-box;
}
.About{
width: 100%;
padding: 7px 0px;
background-color:rgb(86, 61, 61);
}
.ABOUTPICS {
height: 600px;
width: 400px;
margin-left: auto;
margin-right: auto;
}
.about-text{
width: 550px;
}
.main{
width:1130px;
max:content 95px;
margin: 0, auto;
display: flex;
align-items:center;
justify-content: space-around;
}
.about-text h1{
color:white;
font-size: 40px;
text-transform: capitalize;
margin-bottom: 20px;
text-align: left;
font-family:'Gill Sans';
}
.about-text h3{
color:white;
font: size 80px;
text-transform: capitalize;
margin-bottom: 25px;
letter-spacing: 2px;
}
span{
color: orangered;
}
.about-text p{
color:whitesmoke;
letter-spacing: 2px;
line-height:28px;
font-size: 18px;
font-family: sans-serif;
margin-bottom: 45px;
margin-right: 20;
margin-left: 40;
justify-content: space-around;
}
button{
background:#f9004d;
color:white;
text-decoration: none;
border: 2px solid transperent;
font-weight: bold;
padding: 13px 30px;
border-radius: 30ppx;
transition: .4s;
}
button:hover{
background: transparent;
border: 2px solid #f9004d;
cursor: pointer;
}