* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #fdfcfb, #e2d1c3);
  font-family: "Arial", sans-serif;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
}

.container {
  max-width: 500px;
  background: #ffffff;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h1 {
  font-size: 32px;
  font-weight: 700;
  color: #444;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

select {
  display: block;
  width: 60%;
  margin: 20px auto;
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
  cursor: pointer;
  transition: all 0.3s ease;
}

select:hover {
  background-color: #f1f1f1;
  border-color: #bbb;
}

.city {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  margin-top: 15px;
  border-bottom: 1px solid #eaeaea;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.city:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h2 {
  font-size: 24px;
  color: #444;
  margin: 0 0 8px;
}

.date {
  font-size: 14px;
  color: #888;
  margin-bottom: 8px;
}

.time {
  font-size: 48px;
  font-weight: bold;
  color: #222;
}

.time small {
  font-size: 22px;
  vertical-align: middle;
  opacity: 0.8;
}

#all-cities {
  display: block;
  margin-top: 20px;
  font-size: 16px;
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

#all-cities:hover {
  color: #0056b3;
}

footer {
  text-align: center;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-top: 20px;
  flex-shrink: 0;
}

footer a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #0056b3;
}

html,
body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.container {
  margin: auto;
}

footer {
  margin-top: auto;
  padding-bottom: 20px;
}
