
body {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  color: #fff; 
}

.container {
  max-width: 600px;   
  margin: 40px auto;  
  padding: 25px;      
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #2c3e50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

h1 i {
  color: #4a90e2;
  font-size: 40px;
  animation: spin 10s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.city:last-child {
  border-bottom: none;
}

h2 {
  margin: 0;
  font-size: 26px;
  color: #34495e;
}

.date {
  font-size: 16px;
  color: #7f8c8d;
}

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

.time small {
  font-size: 22px;
  vertical-align: middle;
  line-height: 48px;
  color: #4a90e2;
}

select {
  width: 100%;
  padding: 12px;
  font-size: 18px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 30px;
  transition: border 0.3s ease;
}

select:focus {
  border-color: #4a90e2;
  outline: none;
}

footer {
  text-align: center;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
  margin-top: 40px;
}

footer a {
  color: #4a90e2;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  text-decoration: underline;
}
