body {
    font-family: sans-serif;
    background-color: #f8caca;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
  }
  
  .weather-container {
    background: #f9dede;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0 0 0 / 0.8); /*ny rgba-syntax*/
    max-width: 700px;
    width: 100%;
  }
  
  .forecast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
  }
  
  .forecast-item {
    text-align: center;
    background: #f8caca;
    border-radius: 8px;
    padding: 1rem;
  }
  
  .forecast-item img {
    width: 80px;
    height: 80px;
  }
  