.search-form{ 
    padding: 10px 14px;
    margin: 0 auto; 
    font-size: 40px
}
.button{margin-left:20px 30px;
color: purple;
padding:20px;}

.search-city{margin-left:20px;
color: blueviolet;
padding:20px 30px;}
.weather-data{
    column-count:2;
}
.temperature{font-weight: 200;
font-size: 30px;
}
.coder{
    padding: 30px;
    text-align: center;
}       
body {
  background-color: #f9f7fe;
  font-family: "Roboto", sans-serif;
}

a {
  color: #5dc0f1;
}

.weather-app {
  background: rgba(255, 255, 255, 0.881);
  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 #f7fefd;
  padding: 0 0 30px 0;
}

.search-form-input {
  background-color: #f9f7fe;
  border: none;
  border-radius: 6px;
  width: 80%;
  font-size: 16px;
  padding: 15px 20px;
}

.search-form-button {
  background: #bf6b0b;
  padding: 15px 30px;
  border: none;
  font-size: 16px;
  margin-left: 5px;
  border-radius: 6px;
  color: white;
}

main {
  padding: 30px 0;
}

.weather-app-data {
  display: flex;
  justify-content: space-between;
}

.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-details strong {
  color: #f65282;
}

.weather-app-temperature-container {
  display: flex;
}

.weather-app-icon {
  font-size: 30px;
  margin-top: 10px;
}

.weather-app-temperature {
  font-size: 40px;
  margin-left: 10px;
  font-weight: bold;
}

.weather-app-unit {
  margin-top: 16px;
  font-size: 28px;
}

footer {
  border-top: 1px solid #f9f7fe;
  padding: 30px 0 0 0;
  text-align: center;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}
.weather-forecast{display:flex;
justify-content: space-around;}
