body {
  background-image: url('https://s3.amazonaws.com/shecodesio-production/uploads/files/000/159/643/original/Blue_sky_highest.jpg?1741506067');
  font-family: 'Murecho', sans-serif;
  background-size: cover;
  height: 100vh;
}

.weather-app {
  max-width: 650px;
  margin: 40px auto;
}

.search-form-input {
  background-color: rgba(235, 241, 251, 0.2);
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  outline: none;
  color: #fff;
  font-family: 'Murecho', sans-serif;
  font-weight: 250;
  letter-spacing: 1px;
}

.search-form-input:focus {
  background-color: rgba(235, 241, 251, 0.2);
  color: #fff;
  box-shadow: none;
  border-color: transparent;
}

::placeholder {
  color: #fff;
  font-family: 'Murecho', sans-serif;
  font-weight: 250;
  letter-spacing: 1px;
  opacity: 1;
}

.search-form-button {
  background-color: #044971;
  color: aliceblue;
  font-family: 'Murecho', sans-serif;
  font-weight: 250;
  letter-spacing: 1px;
  border: none;
}

.search-form-button:hover {
  background-color: #065a8f;
  color: white;
}

.location {
  color: aliceblue;
  font-size: 25px;
  font-weight: 250;
  letter-spacing: 2px;
}

.temperature {
  color: aliceblue;
  font-size: 80px;
  font-weight: 200;
  margin-top: -10px;
  letter-spacing: 2px;
}

.celsius {
  color: aliceblue;
  font-weight: 250;
  font-size: 30px;
  position: relative;
  top: -35px;
}

#emoji img {
  width: 28px;
  position: relative;
  top: -2px;
}

.current-details {
  letter-spacing: 2px;
  font-weight: 220;
  color: aliceblue;
  line-height: 1.5;
}

.strong {
  font-weight: 450;
}

.forecast-container {
  background: rgba(0, 22, 56, 0.2);
  padding: 20px;
  border-radius: 15px;
}

.forecast-day {
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.day {
  color: #fff;
  font-weight: 300;
  font-size: 18px;
}

.temperature-container {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.high {
  color: #4acaf8;
  font-weight: 400;
  font-size: 18px;
}

.low {
  color: #fff;
  font-weight: 250;
  font-size: 18px;
}

.emojis img {
  width: 45px;
}

footer {
  font-size: 12px;
  font-weight: 250;
  text-align: center;
  color: #fff;
}

.link {
  color: #022167;
  text-decoration-line: none;
}

a:visited {
  color: #2b4e9e;
}
