.weather-pane {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    /* align-items: center; */
    background-color: #1e1e1e;
    color: white;
  }
  
  .weather-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .weather-icon {
    font-size: 48px;
  }
  
  .weather-temperature {
    font-size: 36px;
    margin-top: 10px;
  }
  
  .weather-description {
    font-size: 18px;
    margin-top: 5px;
  }
  