-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
133 lines (112 loc) · 2.29 KB
/
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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
body {
font-family: 'Poppins', sans-serif;
}
h1 {
font-size: 5.5em;
font-weight: bold;
color: #fff;
text-align: center;
margin-top: 50px;
font-family: 'Montserrat', sans-serif;
}
* {
box-sizing: border-box;
}
body {
background: linear-gradient(135deg, #761093, #162794, #b71a2d, #a50d6b);
background-size: 400% 400%;
animation: gradient 15s ease infinite;
}
@keyframes gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.button {
display: inline-block;
padding: 12px 24px;
background-image: linear-gradient(to right, #9c27b0, #ff1744);
color: #fff;
border-radius: 50px;
transition: all 0.3s ease;
}
.button:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.button:focus {
outline: none;
}
.button:active {
transform: translateY(0);
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 80px 0;
text-align: center;
}
h1 {
font-size: 3rem;
font-weight: 900;
color: #fff;
margin-bottom: 30px;
}
p {
font-size: 1.5rem;
font-weight: 400;
color: #fff;
margin-bottom: 60px;
}
.button {
display: inline-block;
background-color: #fbaaba;
color: #fff;
padding: 15px 30px;
font-size: 1.5rem;
font-weight: 400;
border-radius: 30px;
transition: all 0.3s ease;
}
.button:hover {
transform: translateX(5px);
background-position: 0% 50%;
}
#features {
display: flex;
justify-content: center;
flex-wrap: wrap;
margin: 60px 0;
}
.card {
width: 300px;
height: 400px;
margin: 20px;
padding: 40px 20px;
background-color: #fff;
border-radius: 20px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
text-align: center;
}
.card i {
font-size: 60px;
color: #873d9e;
margin-bottom: 20px;
}
.card h3 {
font-size: 24px;
margin-bottom: 20px;
}
.card p {
font-size: 18px;
line-height: 1.5;
color: #6c757d;
}