h1 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.5px;
  font-size: 48px;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 400;
  color: rgba(2, 2, 2, 0.9);
}

header {
  border-bottom: 1px solid #f9f7fe;
  padding-bottom: 20px;
}

footer {
  border-top: 1px solid #f9f7fe;
  padding-top: 20px;
  font-size: 12px;
  text-align: center;
  color: rgba(2, 2, 2, 0.8);
}

p {
  margin-top: 10px;
  color: rgba(2, 2, 2, 0.4);
}

a {
  color: rgba(32, 100, 212);
  text-decoration: none;
}
.container {
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  border-radius: 10px;
  width: 700px;
  margin: 60px auto;
  padding: 30px 30px;
  font-family: "Poppins", sans-serif;
}

.main-temperature {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.main-degrees {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 86px;
  color: rgba(2, 2, 2, 0.9);
  position: relative;
  top: -23px;
}

.main-degrees-emoji {
  width: 125px;
  height: 125px;
  position: relative;
  bottom: -28px;
  right: -10px;
}

.main-degrees-unit {
  font-size: 38px;
  position: relative;
  bottom: 32px;
}

.submit-button {
  font-family: "Poppins", sans-serif;
  border: none;
  width: 18%;
  border-radius: 2px;
  background-color: rgba(32, 100, 212);
  color: white;
  letter-spacing: 0.2px;
  padding: 3px 3px;
  transition: 200ms all ease-in-out;
}
.submit-button:hover {
  background-color: #1969ea;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
}

.search-city {
  font-family: "Poppins", sans-serif;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  border-radius: 4px;
  border: 1px solid #f9f7fe;
  padding: 3px 3px 3px 10px;

  color: rgba(39, 33, 66, 0.6);
  font-weight: 300;
  width: 70%;
}

.highlighted-units {
  color: #e8668d;
}

.weather-forecast {
  display: flex;
  justify-content: space-around;
  text-align: center;
  margin: 20px 0 20px;
}

.weather-forecast-weekday {
  color: rgba(2, 2, 2, 0.4);
  line-height: 30px;
  margin-bottom: 3px;
}
.weather-forecast-emoji {
  width: 80px;
  display: block;
  margin: 0 auto;
  margin-bottom: 3px;
}

.weather-forecast-temperatures {
  color: rgba(2, 2, 2, 0.4);
  line-height: 30px;
  color: #e8668d;
  margin-bottom: 25px;
  font-family: "Poppins", sans-serif;
}

.forecast-bold {
  font-weight: 600;
  padding-right: 5px;
}
