body {
  background: url("../img/worldclock.jpg");
  font-family: "Inter", sans-serif;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 650px;
  margin: 60px auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.container:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

.city {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.city:last-child {
  border: none;
}
h1 {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #444;
  margin-bottom: 30px;
  letter-spacing: 2px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

h2 {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 500;
  color: #555;
}

.date {
  opacity: 0.6;
  font-size: 14px;
}

.time {
  font-size: 38px;
  font-weight: bold;
  color: #2a2a2a;
}

.time small {
  font-size: 16px;
  opacity: 0.7;
  vertical-align: middle;
}

select {
  display: block;
  width: 100%;
  font-size: 18px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fff;
  margin-bottom: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

select:hover,
select:focus {
  border-color: #666;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  outline: none;
}

footer {
  text-align: center;
  font-size: 15px;
  color: #070606;
  padding: 10px;
  background: rgba(85, 78, 78, 0.6);
  max-width: 700px;
  border-radius: 0 0 12px 12px;
  margin: 10px auto 0;
}

footer a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

footer a:hover {
  color: #ffb700;
}
