blob: 9fad02432df10d2600c2d1d1f2223674e83d4831 (
plain)
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
|
body {
margin: 0;
background-color: #05060c;
font-family: calibri;
}
h1 {
font-weight: bold;
background-color: #1b203f;
min-width: 500px;
color: white;
margin: 0;
font-size: 36px;
padding-top: 30px;
padding-bottom: 30px;
text-align: center;
}
#game {
margin-left: auto;
margin-right: auto;
margin-bottom: 40px;
border-top: 10px dashed #222222;
border-bottom: 10px dashed #222222;
width: 500px;
height: 500px;
}
p {
text-align: center;
color: #eeeeee;
font-style: italic;
font-size: 17px;
}
|