18 lines
207 B
CSS
18 lines
207 B
CSS
body {
|
|
background: #151515;
|
|
color: #e8e3e3;
|
|
}
|
|
|
|
.center {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%,-50%);
|
|
text-align: center;
|
|
}
|
|
|
|
.cat img {
|
|
width: 256px;
|
|
margin: 12px;
|
|
}
|