@import url("https://fonts.googleapis.com/css2?family=Agbalumo&family=Dancing+Script:wght@400..700&display=swap");

body {
  background-color: rgba(2, 1, 44, 1);
  font-family: "Agbalumo", system-ui;
  font-weight: 400;
  color: whitesmoke;
  background-image: url(assets/images/thunderstorm-village.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
/* hover animations */
/* .holographic-container {
  background: #000;
} */

.holographic-card {
 
  
 
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: all 0.5s ease;
}

.holographic-card h2 {
  color: #0ff;
 
  position: relative;
  z-index: 2;
}

.holographic-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    0deg, 
    transparent, 
    transparent 30%, 
    rgba(0,255,255,0.3)
  );
  transform: rotate(-45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.holographic-card:hover {
  transform: scale(2.05);
  box-shadow: 0 0 20px rgba(0,255,255,0.5);
}

.holographic-card:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(100%);
}
/* enddd */
header {
  animation: headerGlow 3s infinite;
  padding: 2rem;
  text-align: center;
}

@keyframes headerGlow {
  0% {
    color: white;
  }
  33% {
    color: orange;
  }
  66% {
    color: #e6d751;
  }
  100% {
    color: white;
  }
}
.units {
  border-radius: 10px;
}
#unitsBtn{
    background-color: rgba(48, 47, 74, 1);
}
#favBtn{
    background-color: rgba(48, 47, 74, 1);
}
.relative {
  background-image: url(assets/images/bg-today-small.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
}
.current {
  background-image: url(assets/images/bg-today-large.svg);
}
.forecast {
  background-color: rgba(38, 37, 64, 1);
}
.hour-drop{
  background-color: rgba(48, 47, 74, 1);
  border-radius:10px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}
.drop{
 background-color: rgba(48, 47, 74, 1);
  border-radius:10px;
}
#dayMenu{
   background: rgba(38, 37, 64, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 1000;
    margin-right: 15px;
}

/* TODAYS HIGHLIGHT SECTION */
.humidity,
.wind,
.uv,
.feel, 
/* HOURLY FORECAST SECTION */
.first,
.second,
.third,
.fourth,
.fifth,
.sixth,
.seventh,
.eight,
/* DAILY FORECAST SECTION */
.sun,
.mon,
.tue,
.wed,
.thu,
.fri,
.sat {
  background-color: rgba(48, 47, 74, 1);
}
.attribution {
  padding: 2rem;
}
.attribution a {
  animation: attributionGlow 3s infinite;
}

@keyframes attributionGlow {
  0% {
    color: white;
  }
  33% {
    color: orange;
  }
  66% {
    color: #e6d751;
  }
  100% {
    color: white;
  }
}

/* MEDIA QUERIES */
@media screen and (min-width: 330px) and (max-width: 450px) {
  .search-func {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .relative {
    width: 250px;
  }
  .button {
    width: 250px;
  }
  .current {
    /* width:250px; */
    display: flex;
    flex-direction: column;
    align-items: center;
  }
 
}
  .dropdown {
    background: rgba(38, 37, 64, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 1000;
    margin-right: 15px;
  }
.dropdown p {
  color: orange;
}
.dropdown li:hover {
  background-color: rgba(48, 47, 74, 1);
  list-style: none;
  padding: 0.5rem;
  /* border-bottom: 1px solid white; */
  border-radius: 10px;
}
/* ================================
   WEATHER ICON SIZE FIXES - CSS
   ================================ */

/* Daily Forecast Icons (Sun, Mon, Tue, etc. cards) */
.sun img,
.mon img,
.tue img,
.wed img,
.thu img,
.fri img,
.sat img {
  width: 32px !important;
  height: 32px !important;
  object-fit: contain !important;
  margin: 8px auto !important;
  display: block !important;
  max-width: 100% !important;
  max-height: 40px !important;
}

/* Hourly Forecast Icons (1PM, 2PM, etc. cards) */
.first img,
.second img,
.third img,
.fourth img,
.fifth img,
.sixth img,
.seventh img,
.eight img {
  width: 24px !important;
  height: 24px !important;
  object-fit: contain !important;
  margin: 0 8px !important;
  display: inline-block !important;
  vertical-align: middle !important;
  flex-shrink: 0 !important;
}

/* Prevent card overflow and maintain sizes */
.sun,
.mon,
.tue,
.wed,
.thu,
.fri,
.sat {
  /* overflow: hidden !important; */
  min-height: fit-content !important;
}

.first,
.second,
.third,
.fourth,
.fifth,
.sixth,
.seventh,
.eight {
  /* overflow: hidden !important; */
  align-items: center !important;
  min-height: fit-content !important;
}

/* Ensure text doesn't break layout */
.sun p,
.mon p,
.tue p,
.wed p,
.thu p,
.fri p,
.sat p {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.first p,
.second p,
.third p,
.fourth p,
.fifth p,
.sixth p,
.seventh p,
.eight p {
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}
@media (max-width: 330px) {
  body {
    background-image: url(assets/images/Mobile-image.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-size: 14px;
    display: flex;
    flex-direction: column;

    justify-content: center;
    min-height: 100vh;
    margin: 0;
  }
  .dropdown {
    background: rgba(38, 37, 64, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 1000;
    margin-right: 15px;
  }
  .relative {
    width: 140%;
  }
  .button {
    width: 140%;
  }
  .search-func {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .current {
    margin: 0 auto;
    padding: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
    border-radius: 20px;
  }
  .hour-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .forecast {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 95%;
  }
  .first,
  .second,
  .third,
  .fourth,
  .fifth,
  .sixth,
  .seventh,
  .eight {
    width: 100%;
  }
  .daily {
    display: flex;
    flex-direction: column;

    margin-left: 10px;
  }
  .day {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: auto;
    align-items: center;
    margin: auto;
    justify-content: space-between;
  }
  .sun,
  .mon,
  .tue,
  .wed,
  .thu,
  .fri,
  .sat {
    margin-bottom: 10px;
    padding: 1rem;
    width: 90%;
    font-size: 14px;
  }
  .highlights h2,
  .daily h2 {
    margin-left: 20px;
  }
  .highlights {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
  }
  .high {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: auto;
    align-items: center;

    margin: auto;
    font-size: 17px;
  }
  .humidity,
  .wind,
  .uv,
  .feel {
    margin-bottom: 10px;
    padding: 1rem;
    width: 90%;
  }

  .attribution {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    padding: 1rem;
  }
}
@media (max-width: 360px){
  .logo{
    width: 100px;
  }
  #favBtn{
     font-size:10px;
  }
  #unitsBtn{
        font-size:10px;
  }
}

/* 332px to 390px SCREENS */
@media screen and (min-width: 332px) and (max-width: 390px) {
  .current {
    width: 95%;
    margin: auto;
    border-radius: 20px;
  }
  .highlights {
    width: 95%;
    margin: auto;
    border-radius: 20px;
  }
  .first img,
  .second img,
  .third img,
  .fourth img,
  .fifth img,
  .sixth img,
  .seventh img,
  .eight img {
    width: 35px !important;
    height: 35px !important;
    object-fit: contain !important;
    margin: 0 8px !important;
    display: inline-block !important;
    vertical-align: middle !important;
    flex-shrink: 0 !important;
  }
  .forecast {
    width: 95%;
    margin: auto;
    border-radius: 20px;
  }
  .attribution {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
  }
  .dropdown {
    background: rgba(38, 37, 64, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 1000;
    margin-right: 15px;
  }
   .logo{
    width: 120px;
  }
  #favBtn{
     font-size:12px;
  }
  #unitsBtn{
        font-size:12px;
  }
}
@media screen and (min-width: 391px) and (max-width: 480px){
  .logo{
    width: 150px;
  }
}
/* TO 480px */
@media screen and (min-width: 332px) and (max-width: 480px) {
  body {
    background-image: url(assets/images/Mobile-image.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
  }
 
  .dropdown {
    background: rgba(38, 37, 64, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 1000;
    margin-right: 15px;
  }
  .relative {
    width: 160%;
  }
  .button {
    width: 160%;
  }
  .search-func {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .current {
    margin: 0 auto;
    padding: 1rem;
    width: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
    border-radius: 20px;
  }
  .hour-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .forecast {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .daily {
    display: flex;
    flex-direction: column;

    margin: auto;
  }
  .day {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: auto;
    align-items: center;
    margin: auto;
  }
  .sun,
  .mon,
  .tue,
  .wed,
  .thu,
  .fri,
  .sat {
    margin-bottom: 10px;
    padding: 1rem;
    width: 100px;
    font-size: 14px;
  }
  .highlights h2,
  .daily h2 {
    margin-left: 20px;
  }
  .highlights {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
  }
  .high {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: auto;
    align-items: center;

    margin: auto;
    font-size: 17px;
  }
  .humidity,
  .wind,
  .uv,
  .feel {
    margin-bottom: 10px;
    padding: 1rem;
    width: 155px;
  }
}
/* 481PX TO 767PX SCREENS */
@media screen and (min-width: 481px) and (max-width: 767px) {
  body {
    background-image: url(assets/images/Mobile-image.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
  }
  .dropdown {
    background: rgba(38, 37, 64, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 1000;
    margin-right: 15px;
  }
  .relative {
    width: 240%;
  }
  .button {
    font-size: 1.3rem;
    width: 240%;
  }
  .search-func {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .curr-weather {
    font-size:1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
 
  }
  .current {
    margin: 0 auto;
    padding: 4rem 1rem;
    width: 98%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    border-radius: 25px;
  }
  .hour-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .forecast {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 90%;
    border-radius: 15px;
    margin-top: 10px;
  }
  .first,
  .second,
  .third,
  .fourth,
  .fifth,
  .sixth,
  .seventh,
  .eight {
    width: 100%;
    font-size: 1.5rem;
  }
  .first img,
  .second img,
  .third img,
  .fourth img,
  .fifth img,
  .sixth img,
  .seventh img,
  .eight img {
    width: 65px !important;
    height: 65px !important;
    object-fit: contain !important;
    margin: 0 8px !important;
    display: inline-block !important;
    vertical-align: middle !important;
    flex-shrink: 0 !important;
  }
  .daily {
    display: flex;
    flex-direction: column;
    margin: auto;
  }
  .day {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-top: 10px;
    align-items: center;
    margin: auto;
  }
  .sun,
  .mon,
  .tue,
  .wed,
  .thu,
  .fri,
  .sat {
    margin-bottom: 10px;
    padding: 1rem;
    width: 110px;
    font-size: 1.3rem;
  }
  .highlights h2,
  .daily h2,
  .forecast h2 {
    margin-left: 20px;
    font-size: 1.5rem;
  }
  .highlights {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
  }
  .high {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-top: 10px;
    align-items: center;
    margin: auto;
  }
  .humidity,
  .wind,
  .uv,
  .feel {
    margin-bottom: 10px;
    padding: 1rem;
    width: 225px;
    font-size: 1.3rem;
  }
   .attribution {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    font-size: 1.2rem;
  }
}


/* 768px to 1030px SCREENS (TABLETS)*/
@media screen and (min-width: 768px) and (max-width: 900px) {
  body {
    background-image: url(assets/images/Mobile-image.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
  }
  .dropdown {
    background: rgba(38, 37, 64, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 1000;
    margin-right: 15px;
  }
  .relative {
    width: 340%;
  }
  .button {
    font-size: 1.3rem;
    width: 340%;
  }
  .search-func {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .curr-weather {
    font-size:1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
 
  }
  .current {
    margin: 0 auto;
    padding: 4rem 1rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    border-radius: 25px;
  }
  .hour-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .forecast {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 90%;
    border-radius: 15px;
    margin-top: 10px;
  }
  .first,
  .second,
  .third,
  .fourth,
  .fifth,
  .sixth,
  .seventh,
  .eight {
    width: 100%;
    font-size: 1.5rem;
  }
  .first img,
  .second img,
  .third img,
  .fourth img,
  .fifth img,
  .sixth img,
  .seventh img,
  .eight img {
    width: 65px !important;
    height: 65px !important;
    object-fit: contain !important;
    margin: 0 8px !important;
    display: inline-block !important;
    vertical-align: middle !important;
    flex-shrink: 0 !important;
  }
  .daily {
    display: flex;
    flex-direction: column;
    margin: auto;
  }
  .day {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding-top: 10px;
    align-items: center;
    margin: auto;
  }
  .sun,
  .mon,
  .tue,
  .wed,
  .thu,
  .fri,
  .sat {
    margin-bottom: 10px;
    padding: 1rem;
    width: 120px;
    font-size: 1.3rem;
  }
  .highlights h2,
  .daily h2,
  .forecast h2 {
    margin-left: 20px;
    font-size: 1.5rem;
  }
  .highlights {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
  }
  .high {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-top: 10px;
    align-items: center;
    margin: auto;
  }
  .humidity,
  .wind,
  .uv,
  .feel {
    margin-bottom: 10px;
    padding: 1rem;
    width: 155px;
    font-size: 1.3rem;
  }
   .attribution {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    font-size: 1.7rem;
  }
}

/* SCREENS 901PX TO 1000PX (BIGGER TABLETS) */
@media screen and (min-width:901px) and (max-width: 1000px) {
body {
    background-image: url(assets/images/Mobile-image.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
  }
  .dropdown {
    background: rgba(38, 37, 64, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 1000;
    margin-right: 15px;
  }

  .relative {
    width: 400%;
  
  }

  .button {
    font-size: 1.5rem;
    width: 240%;
    padding:1rem;
    border-radius:20px;
  }
  .search-func {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .curr-weather {
    font-size:1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
 
  }
  .current {
    margin: 0 auto;
    padding: 4rem 1rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    border-radius: 25px;
   background-image: url(assets/images/bg-today-large.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  }
  .hour-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .forecast {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 90%;
    border-radius: 15px;
    margin-top: 10px;
  }
  .first,
  .second,
  .third,
  .fourth,
  .fifth,
  .sixth,
  .seventh,
  .eight {
    width: 100%;
    font-size: 1.5rem;
  }
  .first img,
  .second img,
  .third img,
  .fourth img,
  .fifth img,
  .sixth img,
  .seventh img,
  .eight img {
    width: 65px !important;
    height: 65px !important;
    object-fit: contain !important;
    margin: 0 8px !important;
    display: inline-block !important;
    vertical-align: middle !important;
    flex-shrink: 0 !important;
  }
  .daily {
    display: flex;
    flex-direction: column;
    margin: auto;
  }
  .day {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding-top: 10px;
    align-items: center;
    margin: auto;
  }
  .sun,
  .mon,
  .tue,
  .wed,
  .thu,
  .fri,
  .sat {
    margin-bottom: 10px;
    padding: 1rem;
    width: 110px;
    font-size: 1.3rem;
  }
  .highlights h2,
  .daily h2,
  .forecast h2 {
    margin-left: 20px;
    font-size: 1.5rem;
  }
  .highlights {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
  }
  .high {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-top: 10px;
    align-items: center;
    margin: auto;
  }
  .humidity,
  .wind,
  .uv,
  .feel {
    margin-bottom: 10px;
    padding: 1rem;
    width: 155px;
    font-size: 1.3rem;
  }
   .attribution {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    font-size: 1.7rem;
}
}

@media (width: 1024px){
  body {
    background-image: url(assets/images/Mobile-image.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100vh;
    margin: 0;
    padding: 1rem;
    box-sizing: border-box;
  }
  .dropdown {
    background: rgba(38, 37, 64, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 1000;
    margin-right: 15px;
  }

  .relative {
    width: 250%;
  
  }

  .button {
    font-size: 1.5rem;
    width: 240%;
    padding:1rem;
    border-radius:20px;
  }
  .search-func {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .curr-weather {
    font-size:1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
 
  }
  .current {
    margin: 0 auto;
    padding: 4rem 1rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    border-radius: 25px;
   background-image: url(assets/images/bg-today-large.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  }
  .hour-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .forecast {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 90%;
    border-radius: 15px;
    margin-top: 10px;
  }
  .first,
  .second,
  .third,
  .fourth,
  .fifth,
  .sixth,
  .seventh,
  .eight {
    width: 100%;
    font-size: 1.5rem;
  }
  .first img,
  .second img,
  .third img,
  .fourth img,
  .fifth img,
  .sixth img,
  .seventh img,
  .eight img {
    width: 65px !important;
    height: 65px !important;
    object-fit: contain !important;
    margin: 0 8px !important;
    display: inline-block !important;
    vertical-align: middle !important;
    flex-shrink: 0 !important;
  }
  .daily {
    display: flex;
    flex-direction: column;
    margin: auto;
  }
  .day {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding-top: 10px;
    align-items: center;
    margin: auto;
  }
  .sun,
  .mon,
  .tue,
  .wed,
  .thu,
  .fri,
  .sat {
    margin-bottom: 10px;
    padding: 1rem;
    width: 110px;
    font-size: 1.3rem;
  }
  .highlights h2,
  .daily h2,
  .forecast h2 {
    margin-left: 20px;
    font-size: 1.5rem;
  }
  .highlights {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
  }
  .high {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-top: 10px;
    align-items: center;
    margin: auto;
  }
  .humidity,
  .wind,
  .uv,
  .feel {
    margin-bottom: 10px;
    padding: 1rem;
    width: 155px;
    font-size: 1.3rem;
  }
   .attribution {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    font-size: 1.7rem;
}
}
