16 lines
245 B
CSS
16 lines
245 B
CSS
body {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
background-color: #f0f0f0;
|
|
font-family: Arial, sans-serif;
|
|
margin: auto;
|
|
}
|
|
|
|
#countdown {
|
|
font-size: 10rem;
|
|
color: #333;
|
|
text-align: center;
|
|
}
|