* {
  text-align: justify;
  letter-spacing: 1.5px;
}

body {
  background-image: url(https://s3.amazonaws.com/shecodesio-production/uploads/files/000/179/648/original/PHOTO-2025-05-29-12-36-39.jpg?1776706022);
  background-position: center;
  background-size: cover;
  font-family: "Roboto", sans-serif;
  width: fit-content;
  height: fit-content;
  margin: 0 auto;
}

a {
  color: rgb(245, 95, 152);
}

.weather-app {
  background: linear-gradient(-225deg, #5d9fff 0%, #b8dcff 48%, #6bbbff 100%);
  width: max-content;
  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: #f9f7fe;
  border: none;
  border-radius: 6px;
  width: 80%;
  padding: 20px;
  font-size: 16px;
  padding: 15px 20px;
  text-align: justify;
}

.search-form-input:hover {
  cursor: pointer;
  border: 1px solid #f4aeba;
  box-shadow: 0px 4px 15px rgba(245, 95, 152, 0.4);
}

.search-form-button {
  background: linear-gradient(
    109.6deg,
    rgb(245, 95, 152) 11.2%,
    rgb(254, 148, 136) 100.2%
  );
  padding: 15px 20px;
  border: none;
  margin-left: 5px;
  border-radius: 6px;
  font-size: 16px;
  color: white;
  position: absolute;
}

.search-form-button:hover {
  cursor: pointer;
  background: linear-gradient(
    109.6deg,
    rgb(245, 95, 152) 11.2%,
    rgb(254, 148, 136) 100.2%
  );
  box-shadow: 0px 4px 15px rgba(245, 95, 152, 0.4);
}
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;
  line-height: 20px;
  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-temperature {
  font-size: 88px;
  line-height: 88px;
  font-weight: bold;
}

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

.weather-app-unit {
  margin-top: 6px;
  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 {
  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: 13px;
  color: rgba(0, 0, 0, 0.6);
}
