19 lines
252 B
CSS
19 lines
252 B
CSS
|
body {
|
||
|
background-image: none;
|
||
|
background-color: black;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
margin: auto;
|
||
|
|
||
|
}
|
||
|
|
||
|
@media screen and (min-height: 500px) {
|
||
|
html,
|
||
|
body {
|
||
|
height: 100%;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#time {
|
||
|
font-size: 5rem;
|
||
|
}
|