forked from sheataru/goobus.lol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainstyle.css
64 lines (58 loc) · 1.2 KB
/
mainstyle.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
53
54
55
56
57
58
59
60
61
62
63
64
html {
min-height: calc(100vh - 75px - 50px);
}
/* Reset default styles */
html {
font-family: 'Courier New', Courier, monospace;
background: black;
}
/* Center the body content */
body {
color: #00ff00;
font-family: 'Courier New', Courier, monospace;
text-align: center;
padding: 2em;
margin: auto;
margin-top: 50px;
text-align: center;
max-width: 800px;
padding: 2em;
background: #111;
box-shadow: 0 4px 8px rgba(0, 255, 0, 0.5);
border: 2px solid #00ff00;
border-radius: 8px;
}
/* Style the main heading */
h1 {
font-size: 3em;
margin-bottom: 0.5em;
text-shadow: 0 0 8px #00ff00;
}
h2 {
font-size: 2em;
margin-bottom: 0.5em;
text-shadow: 0 0 8px #00ff00;
}
/* Style the paragraph */
p {
font-size: 1.5em;
line-height: 1.8;
margin-bottom: 0.5em;
}
/* Style the link button */
a {
display: inline-block;
padding: 0.7em 1.5em;
background: #00ff00;
color: black;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
transition: background 0.3s, color 0.3s;
}
/* Change button appearance on hover */
a:hover {
background: black;
color: #00ff00;
border: 2px solid #00ff00;
}