 :root{
  --primary: #9698c3;
  --muted: #c4c4c4;
  --background: #0f0f0f;
  --muted-fade: #c4c4c4de;
  --card-muted-fade: #8a8a8ade;
  /* --temperature: #3b3b3b; */
  
 }
 
 
 body {
      margin: 0;
      padding: 0;
      color: #fff;
      font-family: Roboto, Arial, Helvetica, sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 624px;
      width: 624px;
      /* letter-spacing: 0.02rem; */
    }

    #widget {
      width: 100%;
      height: 100%;
      background: #70B3DE;
      background: linear-gradient(180deg,var(--background) 40%, var(--muted-fade) 99.9%);
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    #content{
        display: none;
        flex-direction: column;
        justify-content: center;
        row-gap: .4rem;
        position: relative;
        top: 5px;
        /* height: 100%; */
    }

    #predicciones-container{
      /* margin: 1rem 0; */
      display: flex;
      width: 100%;
    }

    h1 {
      font-size: 3.25rem;
      font-size: var(--tamanoFuenteTitulo);
      text-align: center;
      margin-bottom: 0.5rem;
    }

    .info {
      font-size: 1.2rem;
      line-height: 1.8;
    }

    .footer {
      text-align: center;
      font-size: 0.9rem;
      opacity: 0.7;
    }

    #loading {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-size: 1.2rem;
      color: #fff;
      height: 100%;
      position: relative;
      bottom: 10%;
    }

    ul{
      list-style: none;
      display: flex;
      justify-content: space-around;
      /* flex-wrap: wrap; */
      margin: 1rem;
      padding: 0;
      /* row-gap: 1rem; */
      column-gap: 0.6rem;
      height: 50%;
      width: 100%;
    }

    ul li{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        flex: 1 1 calc(12%);
        width: 13%;
        /* height: 148px; */
        font-size: 1.2rem;
        row-gap: 0.25rem;
        background-color: #559fdc;
        background: linear-gradient(180deg, var(--background) 0%, var(--card-muted-fade));
        border-radius: 1rem;
        padding: 0.6rem 0;
    }

    ul li img{
      height: 104px;
      width: 104px;
      object-fit: contain;
    }


    #top-container{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #top-container > h1, #top-container > div{
        flex: 1 1 33%;
    }

    #estado-cielo-icono{
      height: 164px;
      padding: 0 1rem;
      position: relative;
      /* bottom: -8px; */
    }

    #temp{
      font-size: 3.3rem;
      font-weight: 600;

    }

    .upper-row{
        padding: 0 2.5rem;
        height: 90%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        
    }

    dl{
        width: 52%;
        
    }

    dl div{
        display: flex;
        justify-content: space-between;
        margin: 0.15rem 0;
    }

    dl div dd{
        margin-inline-start: 20px;
        text-align: center;
        font-size: 1.5rem;
        /* font-weight: 600; */

    }

    dl div dt{
        font-size: 1.4rem;
        letter-spacing: 0.01rem;

    }

    .temperatura-maxima{
      font-size: 1.8rem;
      font-weight: 500;
      /* color: var(--temperature); */

    }

    .temperatura-minima{
      margin-top: 0.15rem;
      font-size: 1.5rem;
      /* color: var(--temperature); */
    }

    #desc{
      text-align: center;
      font-size: 1.35rem;
      /* font-weight: 600; */
    }

    #resumen{
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
      position: relative;
      top: 12px;
    }

    #datos{
        margin: 0 0.5rem 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        position: relative;
    }

    #hora-logo{
      display: flex;
      justify-content: center;
      column-gap: 1rem;
      font-size: 3.7rem
    }

    #hora{
      font-weight: 350;
    }

    #predicciones{
      display: flex;
      justify-content: center;
      align-items: center;
    }


    .dia{
      font-size: 1.5rem;
    }


    #container-logo{
      margin: 5px 0;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    #container-logo > img{
      max-height: 100%;
      object-fit: cover;
      height: 104px;
      width: 100%;
      /* transform: scale(1); */
      transform-origin: center center;
      position: relative;
    }
