h3 {
  margin-bottom: 40px;
  color: var(--secondary-color);
}

.todays-higlights-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 35px;
}

.highlight {
  background-color: var(--white);
  height: 215px;
  padding: 25px 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
}

.highlight .highlight-title {
  color: #aeaeae;
  font-size: 18px;
}

#feels-like .value {
  margin-bottom: 15px;
  margin-left: 5px;
  font-size: 90px;
}

.feels-like .value sup {
  font-size: 45px;
}

.highlight .value-unit p {
  display: inline-block;
}

.highlight .value {
  font-size: 55px;
  color: var(--secondary-color);
}

.highlight .unit {
  font-size: 25px;
  color: var(--secondary-color);
}

.highlight .wind-direction {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.highlight .wind-direction .img-container {
  width: 35px;
  height: 35px;
  margin-right: 10px;
  position: relative;
}

.highlight .wind-direction .img-container i {
  font-size: 25px;
  color: #4050d2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.highlight .wind-direction p {
  font-size: 20px;
  color: var(--secondary-color);
}

.sunrise-sunset .highlight-title {
  margin-bottom: 20px;
}

.sunrise,
.sunset {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.sunrise p,
.sunset p {
  color: var(--secondary-color);
}

.sunrise-sunset img {
  width: 60px;
  margin-right: 15px;
}

.rating {
  font-size: 20px;
  color: var(--secondary-color);
}

.humidity,
.uv-index {
  position: relative;
}

.range {
  position: absolute;
  right: 30px;
  top: 55px;
  width: 30px;
  border-radius: 15px;
  height: 100px;
  border: 2px solid #f6f6f8;
  background-color: transparent;
}

.range .circle {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #4050d2;
  bottom: 73px; /* from 3px to 73px is from 0% to 100%*/
  left: 3px;
}