marcuslich01 commited on
Commit
1634be6
·
verified ·
1 Parent(s): 829f9f6

Added style.css to fix layout and design

Browse files
Files changed (1) hide show
  1. style.css +23 -0
style.css ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ background-color: #121212;
3
+ color: white;
4
+ font-family: Arial, sans-serif;
5
+ margin: 0;
6
+ padding: 20px;
7
+ }
8
+
9
+ .card {
10
+ background-color: #1e1e1e;
11
+ padding: 30px;
12
+ border-radius: 10px;
13
+ box-shadow: 0 0 10px rgba(0,0,0,0.3);
14
+ }
15
+
16
+ a {
17
+ color: #00bfff;
18
+ text-decoration: none;
19
+ }
20
+
21
+ a:hover {
22
+ text-decoration: underline;
23
+ }