#search-icon {
  font-size: larger;
}

#search-btn {
  width: 65px;
  border-left: 1px solid #dee2e6 !important;
  z-index: 15;
  background: #0b111d99;
  color: #ffffff;
}

#searchBox {
  z-index: 10;
  box-shadow: none;
}

#clock {
  font-size: 5rem;
  font-weight: bolder;
  text-align: center;
  color: antiquewhite;
}

#background {
  position: relative;
  overflow: hidden;
}

#background>.w-100 {
  z-index: 5;
  position: relative;
}

#background-image {
  object-fit: cover;
  object-position: bottom right;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.image-credit {
    position: absolute;
    right: 10px;
    bottom: 10px;
    color: white;
    font-size: 12px;
    text-shadow: 0 1px 4px black;
}

#weather-card {
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 1;
  padding: 25px;
  color: white;
  text-align: center;
  top: 0;
  left: 0;
}

#temparature {
  font-size: xxx-large;
  font-weight: 200;
}

#weather-details {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

#weather-details>div {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

#weather-time {
  font-weight: 100;
  font-size: medium;
}

#shortcuts {
  display: flex;
  gap: 12px;
  align-items: center;
}

.shortcut-btn {
  width: 52px;
  height: 52px;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 17px;

  background: rgba(255, 255, 255, 0.16);

  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);

  color: white;

  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.45),
    0 8px 25px rgba(0, 0, 0, 0.15);

  overflow: hidden;
  cursor: pointer;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.shortcut-btn:hover {
  background: rgba(255, 255, 255, 0.23);
  transform: translateY(-2px);
}

.shortcut-btn:active {
  transform: scale(0.94);
}

.shortcut-btn img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.shortcut-btn i {
  font-size: 18px;
}