body{
    background-color: rgb(217, 232, 245);
    font-family: "roboto",sans-serif;
}

a {
  color: #885df1;
}

.weather-app {
  background: white;
  max-width: 600px;
  margin: 45px auto;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  border-radius: 16px;
  padding: 30px;
}

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

.search-form-input {
  background-color:  rgb(217, 232, 245);
  border: none;
  border-radius: 6px;
  width: 80%;
  font-size: 16px;
  padding: 15px 20px;
}

.search-form-button {
  background: rgb(217, 232, 245);
  padding: 15px 30px;
  border: none;
  font-size: 16px;
  margin-left: 5px;
  border-radius: 6px;
  color: rgb(45, 43, 43);
  cursor: pointer;
}

main{
    padding: 30px 0;
}

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

.weather-app-details{
    font-size: 16px;
    color: rgba(39, 33, 66, 0.4);
    line-height: 24px;
    font-weight: 500;
}

.weather-app-data{
    display: flex;
    justify-content: space-between;
}
.weather-app-details strong{
    color: #2c2c2c;
}

.weather-app-temperature-container {
  display: flex;
}

.weather-app-icon {
  width: 88px;
  height: 88px;
}

.weather-app-temperature-value {
  font-size: 88px;
  line-height: 88px;
  font-weight: bold;
  margin-left: 10px;
}

.weatehr-app-units {
  margin-top: 15px;
  font-size: 36px;
}

footer{
    text-align: center;
    padding: 30px 0 0 0;
    font-size: 16px;
    border-top: 1px solid #f9f7fe;
    color:black;
}