37 lines
556 B
CSS
37 lines
556 B
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f4f4f9;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
color: #333;
|
|
}
|
|
|
|
.container {
|
|
text-align: center;
|
|
background-color: white;
|
|
padding: 30px;
|
|
border-radius: 10px;
|
|
box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2.5rem;
|
|
color: #4CAF50;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
p {
|
|
font-size: 1.2rem;
|
|
color: #555;
|
|
}
|
|
|
|
#time {
|
|
font-weight: bold;
|
|
color: #FF5722;
|
|
}
|
|
|