27 lines
340 B
CSS
27 lines
340 B
CSS
|
body {
|
||
|
background-color: black;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
text-align: center;
|
||
|
font-family: "Very damaged", Arial, Helvetica, sans-serif;
|
||
|
}
|
||
|
|
||
|
#main {
|
||
|
margin-top: 20px;
|
||
|
background-color: rgba(0, 0, 0, 1);
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
}
|
||
|
|
||
|
#pong {
|
||
|
border: 1px solid rgba(255, 255, 255, 1);
|
||
|
margin-top: 50px;
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|