html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box; 
  width: 100vw;           
  overflow-x: hidden;     
}

.header {
  background-color: rgba(0, 74, 109, 0.8); /* Dark background color */
  padding: 1% 5%; /* Adjusted padding */
  width: 100%;
  display: flex;
  justify-content: space-between; /* Push logo left & clock right */
  align-items: center;
  box-shadow: 0 4px 8px rgba(36, 65, 81, 0.1);
}

.header img {
  width: 100px;
  height: auto;
  display: block;
}

/* Stylish clock */
.clock {
  background-color: rgba(255, 255, 255, 0); /* semi-transparent background */
  padding: 0.4rem 0.8rem;
  border-radius: 12px;     /* rounded edges */
  font-family: 'Courier New', monospace;
  font-weight: bold;
  font-size: clamp(0.8rem, 1.2vw, 1.2rem); /* responsive font */
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-right: 10%;
}

/* Hover effect (optional) */
.clock:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

h1{
  color: #FFF;
}