* {
  box-sizing: border-box;
}

body {
  background-color: rgb(245, 228, 241);
  margin: 0;
  padding: 40px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #111;
}

#container {
  margin: 50px auto;
  max-width: 70%;
  background-color: white;
  border-radius: 14px;
  padding: 28px 32px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

h1 {
  text-align: center;
  margin: 0 0 24px;
  font-size: 44px;
}

select {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 80%;

  height: 54px;
  margin: 0 auto 24px;

  font-size: 20px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.35);
  background-color: #fff;

  padding: 0 18px;
  text-align: center;
  text-align-last: center;

  transition: color 0.3s, border-color 0.3s, box-shadow 0.3s;
}

select:hover {
  border-color: rgba(0, 0, 0, 0.6);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

select:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.7);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.city {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.city h2 {
  margin: 0;
  font-size: 34px;
}

.city-right {
  text-align: right;
  line-height: 1.25;
}

.time {
  font-size: 22px;
  font-weight: 700;
}

.date {
  font-size: 16px;
  opacity: 0.75;
}

footer {
  text-align: center;
  padding: 25px;
  opacity: 0.85;
}

footer a {
  color: inherit;
}

a{  color: inherit;
}