Files
2024-09-19 21:45:28 -04:00

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;
}