-
Notifications
You must be signed in to change notification settings - Fork 0
/
thanks.css
80 lines (68 loc) · 1.03 KB
/
thanks.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
80
@font-face{
font-family: 'font';
src: url("Jaqueline.ttf")
}
@font-face{
font-family: 'fo';
src: url("icomoon.ttf");
}
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
background: #1f1f1f;
display: flex;
flex-direction: column-reverse;
align-items: center;
justify-content: center;
padding: 100px;
}
.img img{
width: 500px;
}
.main-cont{
background:#fff;
width: 500px;
max-width: 1800PX;
}
.des{
background: #fff;
text-align: center;
margin-top:35px;
}
.des .h1{
font-family: 'font' , sans-serif;
color: royalblue;
margin-bottom: 10px;
margin-top: 80px;
}
.des h4{
font-family: 'fo' , sans-serif;
color: #121212;
font-weight: 400;
}
h1{
margin-top: -80px;
color: #fff;
margin-bottom: 60px;
}
.btn{
padding: 12px ;
width: 150px;
background: royalblue;
color: #fff;
transition: transform 0.4s ease;
font-size: 1rem;
border: none;
outline: none;
margin: 14px;
border-radius: 10px;
}
.btn::active{
transform: scale(0.9);
}
.btn::hover{
color: #000C91;
}