body {
  background-color: #96cdd7;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.backgroundImage {
  background-image: url("https://s3.amazonaws.com/shecodesio-production/uploads/files/000/164/433/original/Meteo_backround_image.jpg?1745981168");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

footer {
  color: black;
  display: center;
  text-align: center;
  justify-content: space-between;
  font-weight: 500;
  padding: 2px;
  background-color: #d0e0ee;
  border-radius: 5px;
  opacity: 0.7;
}

a {
  color: #0458ce;
}
.weather-app {
  background: linear-gradient(#82d7e6, #4048c4);
  color: white;
  max-width: 650px;
  margin: 60px auto;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 30px 50px rgba(242, 241, 244, 0.08);
  background-size: auto;
  opacity: 0.8;
}
header {
  border-bottom: 1px solid #f9f7fe;
  padding: 0 0 30px 0;
}
.app-logo {
  max-width: 150px;
  max-height: 100px;
  position: relative;
  border-radius: 10px;
  margin-bottom: 10px;
}

.search-bar {
  background-color: #d0e0ee;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  padding: 18px;
  width: 70%;
}

.search-button {
  background-color: #0458ce;
  font-size: 16px;
  padding: 20px 30px;
  margin-left: 20px;
  border: none;
  border-radius: 10px;
  color: white;
  transition: 200ms ease-in-out;
}
.search-button:hover {
  background-color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 20px 30px;
  margin-left: 20px;
  border-radius: 10px;
  color: #0458ce;
  cursor: pointer;
  border-color: #0458ce;
  border-style: solid;
}

.current-weather {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px 10px;
}

.line {
  margin: 30px 0;
  color: white;
  opacity: 0.5;
}
.current-city {
  color: white;
  font-weight: bolder;
  margin-top: 20px;
  font-size: 48px;
  line-height: 48px;
}
.current-weather p {
  opacity: 0.8;
  line-height: 1.5;
  font-size: 16px;
}
.yellow {
  color: rgb(253, 232, 0);
  font-weight: bolder;
}

.current-temperature-data-container {
  display: flex;
  align-items: center;
}

.degrees {
  font-size: 80px;
  font-weight: bold;
  margin: 0;
  line-height: 1;
  margin-left: 10px;
  align-self: center;
}
.emojie {
  font-size: 44px;
  margin-right: 5px;
}

.unit {
  margin-top: 50px;
  font-size: 28px;
  align-self: flex-start;
  margin-left: 5px;
  font-weight: bold;
}

.feels-like {
  opacity: 0.8;
  line-height: 1.5;
  font-size: 16px;
  margin-top: -15px;
}

.weather-forecast-container {
  display: flex;
  padding: 3px;
  justify-content: space-around;
  margin-top: 30px;
}
.weather-forecast-day {
  text-align: center;
  color: whitesmoke;
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 10px;
}

.weather-forecast-icon {
  width: 88px;
}

.weather-forecast-temp {
  text-align: center;
  color: rgb(253, 232, 0);
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.weather-forecast-temperature {
  padding: 0 5px;
}
.weather-forecast-week {
  border-style: 0.6;
  border-radius: 15px;
  padding: 5px;
  background: linear-gradient(rgb(244, 110, 244), rgb(0, 200, 255));
  opacity: 0.9;
}
