body {
  background-color: #f0f0f0;
  font-family: "Arial", sans-serif;
}
a {
  text-decoration: none;
  color: #833aa5d1;
}
.weather-app {
  max-width: 600px;
  height: 200px;
  margin: 30px auto;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.8);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.search-form-input {
  background-color: #f9f7fe;
  border: none;
  border-radius: 6px;
  width: 60%;
  font-size: 16px;
  padding: 10px 15px;
}

.search-form-button {
  background: #885df1;
  padding: 10px 15px;
  border: none;
  font-size: 15px;
  margin-left: 5px;
  border-radius: 4px;
  color: white;
}
main {
  text-align: center;
  padding: 30px;
}
.weather-app-city {
  font-size: 36px;
  margin: 10px 0;
}
.weather-app-data {
  font-size: 18px;
  color: #555;
  display: flex;
  justify-content: space-between;
}
.weather-app-details {
  font-size: 18px;
  color: #df408adc;
  margin-top: 10px;
  line-height: 24px;
  font-weight: 500;
}
.weather-app-temperature-container {
  position: absolute;
  top: 60px;
  right: 70px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: -2px;
}
.weather-app-icon {
  width: 88px;
  height: 88px;
  margin-right: 0px;
  margin-left: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.weather-app-temp-with-unit {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 30px;
}

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

.weather-app-temperature-unit {
  font-size: 20px;
  color: #cb3a7eb3;
  margin-left: 4px;
  padding-top: 6px;
}

footer {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #666;
  padding: 10px;
  position: absolute;
  bottom: 10px;
  left: 4px;
  right: 4px;
}
