body {
  font-family: Georgia, "Times New Roman", Times, serif;
  background: linear-gradient(
    109.6deg,
    rgb(245, 239, 249) 30.1%,
    rgb(207, 211, 236) 100.2%
  );
}
.container {
  max-width: 600px;
  margin: 60px auto;
  padding: 20px 25px;
  border-radius: 6px;
  box-shadow: 10px 5px 5px grey;
  position: relative;
  overflow: hidden;
}

.container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://s3.amazonaws.com/shecodesio-production/uploads/files/000/176/198/original/pexels-pixabay-48770.jpg?1764225472");
  background-size: cover;
  background-position: center;
  filter: blur(1px);
  transform: scale(1.05);
  z-index: 0;
}

.container > * {
  position: relative;
  z-index: 1;
}

h1 {
  text-align: center;
}
h2 {
  font-size: 28px;
}

.select-city {
  font-size: 16px;
  width: 100%;
  padding: 10px 25px;
}
.city {
  display: flex;
  justify-content: space-between;
}

.time {
  margin: 20px 0;
  font-size: 30px;
}
.time small {
  font-size: 16px;
}
.date {
  line-height: 0;
  font-size: 18px;
}
footer {
  text-align: center;
  opacity: 0.8;
}
span {
  font-size: small;
}
