-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
34 lines (31 loc) · 692 Bytes
/
style.css
File metadata and controls
34 lines (31 loc) · 692 Bytes
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
body {
margin: 0;
overflow: hidden;
/* Prevent scrolling */
font-family: 'Borel', fantasy;
background-color: black;
}
button {
background-color: #6b12ca;
color: white;
border: none;
border-radius: 5px;
padding: 10px 20px;
font-size: 18px;
font-family: 'Borel', fantasy;
cursor: pointer;
transition: background-color 0.3s;
margin: 10px 0;
/* Adjust margins to make the layout balanced */
}
button:hover {
background-color: #9a30e1;
}
p {
margin: 5px 0 0 0;
/* Remove extra space above and below the instructions */
font-family: 'Borel', fantasy;
font-size: 16px;
color: white;
text-align: center;
}