body {
  background-image: url("../images/worldclock.PNG");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
  margin: 0;
  font-family: "Quantico", sans-serif;
}
body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

a {
  color: #a28a04;
  text-decoration: none;
  transition: 0.3s ease;
}

a:hover {
  color: #fff;
  text-shadow: 0 0 10px #ffd700;
  transform: scale(1.05);
}

h1 {
  text-align: center;
  font-size: 46px;

  font-weight: 400;
}

h2 {
  margin: 0 0 5px;
  font-size: 28px;
}
select {
  width: 100%;
  display: block;
  font-size: 18px;
  border-radius: 7px;
  padding: 10px;
}

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

.city {
  display: flex;
  margin: 10px 0;
  justify-content: space-between;

  padding: 30px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}

.date {
  opacity: 0.7;
}

.time {
  font-size: 48px;
  font-weight: bold;
}
.time small {
  font-size: 23px;
  line-height: 43px;
  vertical-align: middle;
}

footer {
  text-align: center;
  color: white;
  font-size: 18px;
  font-family: "Combo", system-ui;
}
