/* Background styling */
body {
    background-image: url('https://images.pexels.com/photos/359989/pexels-photo-359989.jpeg?cs=srgb&dl=pexels-fecundap6-359989.jpg&fm=jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

/* Digital watch container styling */
.digitalWatch {
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark background */
    color: #f5f5f5; /* Light text color for contrast */
    padding: 30px 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); /* Softer shadow */
    text-align: center;
    transition: transform 0.3s ease-in-out; /* Smooth hover effect */
}

/* Hover effect for the digital watch */
.digitalWatch:hover {
    transform: scale(1.05); /* Slight zoom-in effect */
}

/* Styling for time display */
.H-M-S, .formate {
    display: inline-block;
    font-size: 80px;
    font-weight: bold;
    letter-spacing: 2px;
}

/* Styling for date display */
.Date {
    font-size: 40px;
    margin-top: 20px;
    display: block;
    color: #ffcc00; /* Bright color for date */
}
.Bow {
  padding-bottom: 0px;
  display: inline-block;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 2px;
  color: aqua;
}
