body {
  font-family: Arial, sans-serif;
  background-color: #f3f3f3;
  margin: 0;
  padding: 20px;
}

.weather-app {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.search-form {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.search-form-input {
  flex: 1;
  padding: 10px;
  font-size: 16px;
}

.search-form-button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #2a6ef5;
  color: white;
  border: none;
  cursor: pointer;
}

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

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

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

.weather-app-unit {
  font-size: 24px;
  margin-left: 5px;
}
