body {
  background-color: #f9f7fe;
  background-image: url(https://cdn.pixabay.com/photo/2017/01/12/13/23/map-1974699_1280.png);
  font-family: sans-serif;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
}

.container {
  max-width: 600px;
  margin: 60px auto;
  background: rgba(255, 255, 255, 0.8);
  padding: 30px;
  box-shadow: 0px 7px 29px 0px rgb(0, 0, 0, 0.2);
  border-radius: 10px;
}

.city {
  display: flex;
  margin: 10px 0;
  justify-content: space-between;
  padding: 30px 0;
  align-items: center; /* alinha verticalmente nome e hora */
  flex-wrap: wrap; /* permite quebrar para a linha de baixo em vez de sobrepor */
  gap: 10px;
  border-bottom: 1px dashed rgb(0, 0, 0, 0.2);
}

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

.date {
  opacity: 0.7;
}

.time {
  font-size: 32px;
  font-weight: 750; 
  white-space: nowrap;
}

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

select {
  display: block;
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  font-size: 18px;
}

h1 {
  text-align: center;
  font-family: sans-serif;
  font-size: 38px;
  font-weight: 900;
}

h2 {
  margin: 0 0 5px;
  font-size: 26px;
  font-weight: bolder;
  white-space: nowrap; /* "Luxembourg 🇱🇺" nunca quebra a meio */
}

footer {
  text-align: center;
  font-size: 12px;
  color: rgb(0, 0, 0, 0.8);
}

@media (max-width: 480px) {
  .city {
    flex-direction: column; /* nome em cima, hora por baixo */
    align-items: flex-start;
    text-align: left;
  }
}
