File size: 1,251 Bytes
ef45c5a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
body {
	font-family: 'Poppins', sans-serif;
	background-color:#333;
}

#banner{
	background: #333 center 0 !important;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600; /* Example weight */
}

p {
	font-family: 'Poppins', sans-serif;
	font-weight: 400; /* Regular weight */
}

.wp-block-button__link {
	color:#fff;
	background-color:#32373c;
	border-radius:9999px;
	box-shadow:none;
	text-decoration:none;
	padding:calc(.667em + 2px) calc(1.333em + 2px);
	font-size:1.125em
}

.wp-block-file__button{
	background:#32373c;
	color:#fff;
	text-decoration:none
}

.floating-button {
	position: fixed;
	bottom: 20px;
	left: 20px;
	background-color: #834aff;
	color: white;
	padding: 15px 25px;
	border: none;
	border-radius: 10px;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	transition: background-color 0.3s, box-shadow 0.3s;
	text-decoration: none;
	font-family: 'Poppins', sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
}

.floating-button:hover {
	background-color: darkviolet;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.floating-button i {
	margin-right: 10px;
}