17 lines
192 B
CSS
17 lines
192 B
CSS
body {
|
|
background: #151515;
|
|
color: #e8e3e3
|
|
}
|
|
|
|
.center {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%,-50%);
|
|
text-align: center;
|
|
}
|
|
|
|
.message {
|
|
font-size: 48px;
|
|
}
|