/* Basic CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Courier New', Courier, monospace;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.clock-container {
  background: #333;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  padding: 20px;
  text-align: center;
  max-width: 450px;
  width: 90%;
}

.brand {
  font-size: 1.5rem;
  color: #f5f5f5;
  margin-bottom: 15px;
  font-family: 'Arial', sans-serif;
  letter-spacing: 1px;
}

.date-box {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.date-part {
  font-size: 1.2rem;
  color: #f0e68c;
}

.time-box {
  font-size: 3rem;
  color: #4786fa;
  letter-spacing: 0.1rem;
  font-family: 'Digital-7 Mono', monospace;
  display: flex;
  justify-content: center;
  align-items: center;
}

#time::after {
  content: " WIB";
  font-size: 3rem;
  color: #f5f5f5;
  margin-left: 5px;
}

.clock-container {
  padding: 30px;
  background: #222;
  border: 5px solid #444;
  border-radius: 15px;
}

/* Responsive Styling */
@media (max-width: 500px) {
  .time-box {
      font-size: 2.2rem;
  }

  .date-part {
      font-size: 1rem;
  }

  .brand {
      font-size: 1.2rem;
  }

  #time::after {
      font-size: 2.2rem;
  }
}
