-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
49 lines (42 loc) · 847 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: #f0f0f0;
}
.container {
text-align: center;
}
.heading {
font-family: "Arial", sans-serif;
font-size: 36px;
color: #5a3eb6;
margin-bottom: 30px;
}
.button {
display: inline-block;
padding: 10px 20px;
text-decoration: none;
background-color: #5a3eb6;
color: #fff;
border-radius: 5px;
border: none;
font-size: 16px;
cursor: pointer;
margin: 10px;
transition: background-color 0.3s;
}
.button:hover {
background-color: #5a3eb6;
}
@media (max-width: 768px) {
.heading {
font-size: 24px;
}
}