body {
  background-image: url("https://s3.amazonaws.com/shecodesio-production/uploads/files/000/155/709/original/Rainy_Japan.png?1737872294");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  font-family: "Roboto", sans-serif;
}

a {
  color:white;
}

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

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

.search-input {
  display: inline-block;
  text-align: left;
  background: white;
  border: solid rgb(109, 49, 144);
  color: darkviolet;
  margin: 10px 15px auto;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 18px;
  width: 75%;
}

.search-button {
  margin-left: 5px;
  font-size: 18px;
  background-color: palevioletred;
  color: white;
  font-weight: bold;
  border: none;
  padding: 20px;
  line-height: 1;
  border-radius: 12px;
}

main {
  padding: 30px 0;
}

.current-temperature {
  font-size: 50px;
}
.current-weather {
  color: rgb(109, 49, 144);
  display: flex;
  justify-content: space-between;
}

.current-city {
  color: rgb(109, 49, 144);
  font-size: 52px;
  font-weight: 900;
  margin: 0;
}
.current-details {
  font-weight: bolder;
  color: rgb(149, 14, 207);
  font-size: 18px;
}
.humidity {
  color: palevioletred;
  font-style: italic;
}
.wind-speed {
  color: palevioletred;
  font-style: italic;
}
.current-temperature-container {
  display: flex;
}
.current-temperature-icon {
  width: 120px;
  height: 120px;
}

.current-temperature-value {
  font-size: 88px;
  line-height: 88px;
  font-weight: bold;
}

.current-temperature-unit {
  margin-top: 6px;
  font-size: 28px;
}
.forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 10px;
}

.forecast-weekday {
  text-align: center;
  font-weight: bolder;
  font: 16px;
  line-height: 20px;
  margin-bottom: 10px;
  color: palevioletred;
  font-size: 18px;
}
.forecast-icon {
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto;
}
.forecast-temps {
  display: flex;
  text-align: center;
  justify-content: center;
  margin-top: 10px;
  color: palevioletred;
  font-weight: bold;
  font-size: 20px;
}
.forecast-temp {
  font-weight: bold;
  padding: 0 10px;
}

footer {
  text-align: center; 
  max-width: 600px;
  margin:50px auto;
  padding: 10px;
  color:rgba(255, 255, 255, 0.96);
  font-weight:bolder;
  font-size:16px;
}
