body {
  background-image: url("worldclock.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  font-family: "Jacquard 24", system-ui;
  font-weight: 400;
  font-style: normal;
   margin: 0;
  padding: 0;
}

 


h1 {
  text-align: center;
  font-size: 36px;
  margin: 20px 0;
}

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

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 15px;
  background-color: bisque;
  opacity: 0.9;
}

.city {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}

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

.date {
  opacity: 0.7;
}

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

.time small {
  font-size: 24px;
  vertical-align: middle;
  line-height: 48px;
}
a{color:rgb(174, 0, 87);
font-family: 'sanserif';
}
footer {
  text-align: center;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.8);
  margin: 20px 0;
}