body {
  background-color: pink;
  font-family: "Roboto", sans-serif;
}
main {
  padding: 30px 0;
}
header {
  padding: 0 10px;
  border-bottom: 1px solid #f9f7fe;
}
footer {
  border-top: 10px #f9f7fe;
  padding: 30px 0 0 0;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  color: rgba(0 0 0 0.6);
}
a {
  color: #885df1;
}
.weather-app {
  background-color: white;
  max-width: 600px;
  margin: 0px auto;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  border-radius: 16px;
  padding: 30px;
}
.weather-app-data {
  display: flex;
  justify-content: space-between;
}
.weather-app-city {
  margin: 0;
  line-height: 48px;
  font-size: 38px;
}
.weather-app-details {
  font-size: 15px;
  line-height: 20px;
  color: rgba(39, 33, 66, 0.4);
}
.weather-app-details strong {
  color: #f65282;
}
.weather-app-temperature-container {
  display: flex;
}
.weather-app-icon {
  width: 88px;
  height: 88px;
}
.weather-app-temperature-value {
  font-size: 88px;
  margin-left: 10px;
  font-weight: bold;
  letter-spacing: -2px;
}
.weather-app-unit {
  margin-top: 16px;
  font-size: 28px;
}
.search-form {
  display: flex;
  gap: 10px;
}
.search-form-input {
  background-color: whitesmoke;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  flex: 1;
  padding: 15px 18px;
}
.search-form-button {
  background-color: palevioletred;
  padding: 15px 20px;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  color: white;
  cursor: pointer;
  white-space: nowrap;
}
.search-form-button:hover {
  opacity: 80%;
}
