body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin-top: 20px;
    padding: 0 10px;
  }
  h1 {
    font-size: 60px;
    margin-bottom: 80px;
  }
  .weather-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    max-width: 700px;
    /* Limit max width for wider screens */
    margin: 0 auto;
    /* Center the container */
    flex-wrap: wrap;
    /* Allow wrapping for smaller screens */
  }
  .weather-info {
    text-align: center;
    flex: 1;
    min-width: 120px;
    margin-bottom: 20px;
  }
  .weather-icon {
    font-size: 40px;
    margin-bottom: 5px;
    position: relative;
  }
  .weather-detail {
    font-size: 18px;
  }
  .weather-icon.inactive::after {
    content: "❌";
    font-size: 40px;
    color: red;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.6;
  }
  @media (max-width: 600px) {
    .weather-container {
      gap: 20px;
    }
    .weather-icon {
      font-size: 30px;
    }
    .weather-detail {
      font-size: 16px;
    }
    h1 {
      font-size: 50px;
      margin-bottom: 40px;
    }
  }