html {
  font-size: 16px;
  background-color: antiquewhite;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
}

body {
  align-items: center;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.clock {
  margin: 50px auto;
  border: 20px solid black;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgb(61, 40, 8);
  height: 200px;
  width: 200px;
  position: relative;
  padding: 20px;
}

.clock-face {
  position: relative;
  height: 100%;
  width: 100%;
  transform: translateY(-3px);
}

.hand {
  width: 50%;
  height: 5px;
  background: rgb(20, 41, 41);
  position: absolute;
  top: 50%;
  transform-origin: 100%;
}

.digital-clock {
  display: block;
  font-size: 6rem;
  font-weight: bold;
}

.search {
  width: 80vw;
  max-width: 500px;
  margin-top: 50px;
  text-align: left;
  position: relative;
  z-index: 15;
}

.search input {
  background-color: antiquewhite;
  border: 1px solid black;
  box-shadow: 0 4px 10px black;
  height: 40px;
  width: 100%;
  border-radius: 10px;
  padding: 10px;
}

.search .result {
  position: absolute;
  width: 100%;
  max-height: 144px;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 4px 10px -2px  black;
  border-radius: 2px 2px 10px 10px;
}

.search .result span {
  width: 100%;
  display: none;
  padding: 5px;
  background-color: rgb(183 162 135);
  color: aliceblue;
  cursor: pointer;
  border-bottom: 1px solid;
}

.timeZone {
  font-size: 26px;
  font-weight: bold;
}

@media only screen and (max-width : 600px) {
  .clock {
    width: 150px;
    height: 150px;
  }

  .digital-clock {
    font-size: 3rem;
  }

  .timeZone {
    font-size: 20px;
  }
}

