body {
  font-family: Arial, sans-serif;
  background: #f9f7fe;
  color: #333;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.weather-app {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 400px;
}

header {
  border-bottom: 1px solid #f9f7fe;
  padding: 0 0 20px 0;
  margin-bottom: 20px;
}

footer {
  border-top: 1px solid #f9f7fe;
  padding: 20px 0 0 0;
  font-size: 13px;
  text-align: center;
}

.search-form-input {
  background: #f9f7fe;
  border: none;
  border-radius: 6px;
  width: 70%;
  padding: 10px;
  font-size: 16px;
}

.search-form-button {
  background-color: purple;
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  color: white;
  margin-left: 5px;
  font-size: 16px;
  cursor: pointer;
}

.search-form-button:hover {
  background-color: #5a0b5a;
}

.weather-app-data {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.weather-app-city {
  margin: 0;
  font-size: 30px;
  line-height: 48px;
}

.weather-app-temperature {
  font-size: 40px;
  font-weight: bold;
}

.weather-icon {
  width: 80px;
  height: 80px;
}

