-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
59 lines (52 loc) · 1.08 KB
/
main.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
body,
body * {
margin: 0;
padding: 0;
vertical-align: top;
box-sizing: border-box;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.main {
display: inline-block;
width: 650px;
margin-top: 100px;
margin-left: calc((100% - 650px) / 2);
margin-right: calc((100% - 650px) / 2);
}
.img {
width: 650px;
margin-bottom: 40px;
}
.heading {
font-size: 45px;
color: #2B2B2B;
margin-bottom: 20px;
}
.paragraph {
line-height: 30px;
font-size: 22px;
font-weight: bold;
color: #979797;
margin-bottom: 65px;
}
.link {
text-transform: capitalize;
color: #FFFFF8;
padding: 13px 46px;
text-decoration: none;
font-weight: bold;
background-color: #FFC7BA;
font-size: 28px;
border-radius: 31px;
box-shadow: 0px 7px #F0998F;
cursor: pointer;
transition: all 0.5s;
display: inline-block;
width: 306px;
margin-left: calc((100% - 306px) / 2);
margin-right: calc((100% - 306px) / 2);
}
.link:hover {
background-color:#92D2B0;
color: #5B352C;
}