body {
  font-family: "Roboto", sans-serif;
  width: 100%;
  height: 100vh;
  background: url("https://s3.amazonaws.com/shecodesio-production/uploads/files/000/172/988/original/default.jpg?1756512000");
}
.container {
  max-width: 600px;
  margin: 45px auto;
  display: block;
  padding: 25px;
  border-radius: 10px;
  background-color: rgb(255, 255, 255, 0.8);
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
}
header {
  padding: 0 0 30px 0;
}
.city-search-input {
  width: 70%;
  border: none;
  border-radius: 13px;
  font-size: 15px;
  padding: 15px 20px;
  margin-right: 10px;
  background-color: rgb(255, 255, 255, 0.6);
}
.search-button-input {
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  color: rgba(39, 33, 66, 0.7);
  background-color: #fff;
  border-radius: 13px;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
}

.weather-app-data {
  display: flex;
  justify-content: space-between;
  padding: 0px 40px;
  text-align: left;
}
.city-name {
  margin: 0 auto;
  margin-top: 10px;
  font-size: 38px;
  line-height: 48px;
}
.current-day-details {
  margin: 0 auto;
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
}

.weather-app-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 12px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 24px;
  margin: 30px 0px;
}
.weather-app-details div {
  border-bottom: 1px solid #000;
  padding: 5px;
}
.weather-app-details div strong {
  color: rgba(0, 0, 0, 0.6);
}
.weather-app-temperature-container {
  display: flex;
  align-items: center;
}
.weather-app-temperature {
  font-size: 88px;
  margin-left: 10px;
  font-weight: bold;
}

.weather-app-unit {
  font-size: 24px;
  position: relative;
  bottom: 25px;
}
.weather-app-icon {
  width: 85px;
  height: 85px;
}
.weather-forecast {
  display: flex;
  justify-content: space-around;
}
.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 {
  width: 88px;
  height: 88px;
  display: block;
  margin: 0 auto;
}
.weather-forecast-temperatures {
  text-align: center;
  color: #f65282;
  margin-top: 10px;
  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);
}
