-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.css
More file actions
87 lines (87 loc) · 1.47 KB
/
about.css
File metadata and controls
87 lines (87 loc) · 1.47 KB
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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: "Josefin Sans", sans-serif;
}
.about {
width: 100%;
height: 100vh;
background: #161922;
display: flex;
justify-content: center;
align-items: center;
}
.about .content img {
height: auto;
width: 500px;
max-width: 100%;
}
.text {
width: 550px;
max-width: 100%;
padding: 0 10px;
}
.content {
width: 1280px;
max-width: 95%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-around;
}
.text h1 {
color: #ffcc74;
font-size: 85px;
margin-bottom: 20px;
text-transform: capitalize;
}
.text h5 {
color: white;
font-size: 25px;
margin-bottom: 25px;
text-transform: capitalize;
letter-spacing: 2px;
}
.text p {
color: #c0c4d6;
font-size: 18px;
line-height: 28px;
letter-spacing: 1px;
margin-bottom: 45px;
}
button {
background-color: #ffcc74;
text-decoration: none;
padding: 10px 30px;
border-radius: 30px;
font-size: 17px;
font-weight: bold;
border: 2px solid transparent;
color: black;
}
button:hover {
transform: scale(1.2);
background-color: transparent;
border: 2px solid #ffcc74;
transition: 0.4s;
cursor: pointer;
color: #ffcc74;
}
@media screen and (max-width: 1180px) {
.about {
width: 100%;
height: auto;
padding: 70px 0px;
}
}
@media screen and (max-width: 650px) {
.about .content img {
margin-bottom: 35px;
}
.text h1 {
font-size: 60px;
margin-bottom: 25px;
}
}