body {
  margin: 0;
  font-family: "Roboto", "Helvetica", sans-serif;
  color: #000;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url("https://plus.unsplash.com/premium_photo-1677675594637-e65af4d6b0e2?q=80&w=1228&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
}
body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(190, 181, 181, 0.5);
  z-index: -1;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 600px;
  width: 90%;
  margin: 60px auto;
  padding: 40px;
  background-color: rgba(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  border-radius: 10px;
}

h1 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  line-height: 1.2;
}

h2 {
  margin: 0 0 5px;
  font-size: 28px;
  line-height: 1.2;
}

select {
  display: block;
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 18px;
  border: 1px solid #ccc;
  background-color: #fff;
  margin-bottom: 30px;
  transition: border 0.3s, box-shadow 0.3s;
}

select:focus {
  border-color: #888;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  outline: none;
}

.city {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
  border-bottom: 1px dashed #d8d0d0;
  padding: 30px 0;
}

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

.date {
  opacity: 0.5;
  margin-top: 15px;
}

.time {
  font-size: 48px;
  font-weight: bold;
}

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

footer {
  text-align: center;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.8);
  margin-top: 60px;
  margin-bottom: 30px;
}

a {
  color: rgb(135, 10, 10);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: rgb(231, 85, 85);
}

@media (max-width: 480px) {
  .city {
    flex-direction: column;
    align-items: flex-start;
  }
  .time {
    font-size: 36px;
  }
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 22px;
  }
  .container {
    padding: 20px;
  }
}
