body {
  text-align: center;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(image/background-clock-image.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  color: white;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  text-align: left;
  margin-top: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 10px;
  font-family: "Roboto Mono", monospace;
}

h1 {
  text-align: center;
}

h2 {
  margin: 0 0 5px;
}

.selected-city {
  width: 100%;
  display: block;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  font-size: 16px;
  color: #333;
  appearance: none;
  outline: none;
  cursor: pointer;
}

.selected-city:hover {
  border-color: #888;
}

.selected-city:focus {
  border-color: #007bff;
}

.city {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px dashed grey;
}

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

.time {
  font-size: 2rem;
  font-weight: bold;
}

.time small {
  font-size: 20px;
  vertical-align: middle;
}

.date {
  opacity: 0.6;
}

.city-content {
  font-family: "Poppins", sans-serif;
}

.all-cities {
  margin-top: 20px;
  color: #cecbcb;
  list-style: 1.5;
  text-decoration: none;
}

footer {
  margin-top: 30px;
  color: rgb(196, 193, 193);
}
