
I forgot what I actually changed. It may not even be playable, I just want to get this up there.
25 lines
315 B
CSS
25 lines
315 B
CSS
body {
|
|
margin: 0;
|
|
overflow: hidden;
|
|
background-color: #222;
|
|
}
|
|
|
|
#container {
|
|
height: 100vh;
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
#main {
|
|
width: 1300px;
|
|
height: 900px;
|
|
margin: 50px auto;
|
|
border: 2px solid #111;
|
|
background-color: #fff;
|
|
}
|
|
|
|
#temp {
|
|
display: none;
|
|
}
|