body {
  background-color: #f5f5f5;
  font-family: Arial, sans-serif;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }
  
  h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
  }
  
  input {
    padding: 0.5rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    margin-right: 1rem;
  }
  
  button {
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
  }
  
  .weather {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .weather div {
    margin-bottom: 1rem;
  }
  
  .weather span {
    font-size: 1.2rem;
    color: #333;
  }
  
  .weather .description {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .weather .temperature {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  
  .weather .feels-like {
    font-size: 1.2rem;
  }
  
  .weather .humidity {
    font-size: 1.2rem;
  }
  
  .weather .wind-speed {
    font-size: 1.2rem;
  }