 /*this is the main body stylings*/
  body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #2b3a42;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  
 /*this only styles everything I put in the container classes*/
  .container {
    text-align: center;
    background-color: #333;
    padding: 30px;
    border-radius: 15px;
    color: white;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  }
  
  /*header css*/
  h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  h2 {
    margin: 20px 0 10px;
    font-size: 1.8rem;
  }
  
  /*This targets all the visual important stuff from the weather app*/
  #temperature {
    font-size: 4rem;
    font-weight: bold;
  }
  
  #icon {
    width: 100px;
    margin-top: 10px;
  }
  
  #description {
    font-size: 1.2rem;
    color: #ccc;
  }
  
  #forecast-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
  }
  
  /*This is the css for the fake forecast data I made*/
  .forecast-stuff {
    background-color: #444;
    padding: 15px;
    border-radius: 10px;
    width: 110px;
  }
  
  .forecast-stuff img {
    width: 60px;
    margin: 10px 0;
  }
  
  /*refresh button css*/
  #refresh-btn {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #ffcc00;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  #refresh-btn:hover {
    background-color: #e6b800;
  }
  