
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f1f1f1;
}
.clock-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
.clock {
font-size: 48px;
color: #333;
}
.select-container {
margin-top: 20px;
}
.select-container select {
padding: 10px;
font-size: 16px;
border: 2px solid #007bff;
border-radius: 5px;
background-color: #fff;
color: #333;
}
.select-container select:focus {
outline: none;
}
.option {
background-color: #007bff;
color: #fff;
}
.option:hover...