body {
  font-family: "Quicksand", sans-serif;
  background: #f9f7fe;
  color: #495464;
  padding: 40px 15px;
}
.container {
  margin: 0 auto;
  background: #fff;
  max-width: 720px;
  width: 100%;
  padding: 30px 40px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
  margin-bottom: 30px;
}
h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 48px;
  color: #344767;
  margin-bottom: 20px;
  text-align: center;
}
select {
  width: 100%;
  padding: 12px 16px;
  font-size: 20px;
  border: 2px solid #a3b8d1;
  border-radius: 6px;
  background-color: #e6ebf1;
  color: #344767;
  font-weight: 600;
  margin-bottom: 40px;
  transition: border-color 300ms ease;
}
select:hover {
  cursor: pointer;
  border-color: #6779a4;
}
#cities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.city {
  background: #f0f4ff;
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.1);
  text-align: center;
  transition: box-shadow 300ms ease, transform 300ms ease;
}
.city:hover {
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(102, 126, 234, 0.2);
}

.city h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 12px;
  color: #344767;
}
.date {
  font-size: 16px;
  font-style: italic;
  color: #6779a4;
  opacity: 0.8;
  margin-bottom: 14px;
}
.time {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  font-size: 35px;
  color: #344767;
}
.time small {
  font-size: 15px;
}
footer {
  text-align: center;
  font-size: 14px;
  color: #6779a4;
  font-weight: 500;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

footer a {
  color: #495464;
  font-weight: 700;
  text-decoration: none;
}
footer a:hover {
  color: #344767;
}
