body {
    background-image: url("https://www.dropbox.com/scl/fi/pscmqxptohmw5w8a90lc4/mountains.jpg?rlkey=f4mdak1ddcuf8b3v10aayw4h5&raw=1");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: "Roboto", sans-serif;
  
}
a {
  color: #885df1;
}
.weather-app {
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(12px);
    max-width: 600px;
    margin: 120px auto;
    padding: 30px;
    box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
    border-radius: 16px;

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

main {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.search-form {
  display: flex;
  gap: 10px;
}
.search-form-input {
    background-color:#F9F7FE;
    border: none;
    border-radius: 12px;
    width: auto;
    flex: 1;
    padding:15px 20px;
    font-size: 16px;

}
.search-form-button {
  background:#885DF1;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 15px 30px;
  cursor: pointer;
  margin-left: 0;
 
}
.search-form-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.weather-app-data {
    display: block;
    justify-content: space-between;
    align-items: center;

}
.weather-app-city {
    margin: 0;
    font-size: 48px;
    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;
    align-items: flex-start;
}
.weather-app-icon {
  width: 88px;
  height: 88px;
}


.weather-app-temperature {
  font-size: 80px;
  margin-left: 10px;
  font-weight: bold;
}

.weather-app-unit {
  margin-top: 8px;
  font-size: 28px;
}

.weather-forecast {
  display:flex;
  justify-content: space-around;
  margin-top: 30px;
}


.weather-forecast-date {
  text-align: center;
  color:rgba (39, 33, 66, 0.4);
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}

.weather-forecast-icon {
  font-size: 88px;
  height: 88px;
  display:block;
  margin: 0 auto;
}

.weather-forecast-temperatures {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #f65282;
  display: flex;
  justify-content: center;
}

.weather-forecast-temperature {
  padding:0 10px;
  

}

footer {
  border-top: 1px solid #f9f7fe;
  padding: 30px 0 0 0;
  text-align: center;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}