-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
52 lines (48 loc) · 941 Bytes
/
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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: "Poppins" , sans-serif;
}
body{
background-color: #511aeb;
}
.wrapper {
width: 400px;
position: absolute;
transform: translate(-50%,-50%);
top: 50%;
left: 50%;
}
.container {
width: 100%;
background-color:#511aea;
padding: 50px 40px;
box-shadow: 0 20px 65px rgba(87, 11, 16, 0.5,);
}
.container::after {
content: "";
position: absolute;
width: 80%;
}
.container p {
color: #ffffff;
line-height: 2;
font-size: 18px;
}
.container h3 {
color: #ffffff;
margin: 20px 0 60px 0;
font-weight: 600;
text-transform: capitalize;
}
.container button {
background-color: #ffffff;
border: none;
padding: 15px 45px;
border-radius: 5px;
font-size: 18px;
font-weight: 600;
color: #511aea;
cursor: pointer;
}