* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #fefefe;
  scroll-behavior: smooth;
}

body {
  background: #005c97; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #363795,
    #005c97
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #363795,
    #005c97
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
header {
  width: 100%;
  margin: 20px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #fefefe;
  padding-bottom: 20px;
}

.Search-input {
  background-color: transparent;
  color: #fefefe;
  border: solid #fefefe;
  border-radius: 20px;
  font-size: 16px;
  padding: 15px 25px;
}

.button {
  background-color: transparent;
  padding: 15px 20px;
  border: solid #fefefe;
  font-size: 16px;
  margin-left: 5px;
  border-radius: 20px;
  transition: all 0.5s ease;
}

.Search-input::placeholder {
  color: white;
  opacity: 1;
}
.Search-input {
  outline: none;
}

.button:hover {
  background-color: #fefefe;
  color: #1767da;
}

.home {
  width: 90%;
  margin: 0px auto;
  padding: 30px 20px;
  background-color: rgba(254, 254, 254, 0.349);
  border-radius: 20px;
}

.row-1 {
  display: flex;
  justify-content: space-between;
}

.city {
  margin: 0;
  font-size: 48px;
  line-height: 65px;
}

.time,
.day {
  font-size: 28px;
  line-height: 40px;
  font-weight: 500;
}

.col-2 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  padding: 15px 0;
}

strong {
  color: #f7f7f8;
}
.col-3 {
  display: flex;
  flex-direction: column;
}

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

.temperature-col {
  display: flex;
  justify-content: center;
}
.weather-app-temperature {
  font-size: 48px;
  font-weight: 600;
}

.weather-app-unit {
  margin-top: 6px;
  font-size: 25px;
}

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

.weather-forecast-date {
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}

.weather-forecast-icon {
  font-size: 38px;
  text-align: center;
}
.weather-forecast-temperatures {
  text-align: center;
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

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

footer {
  border-top: 1px solid #f9f7fe;
  padding: 30px 0 0;
  text-align: center;
  font-size: 16px;
}
