@font-face {
  font-family: "segoe-ui";
  src: url("./segoe-ui-4-cufonfonts/Segoe\ UI\ Bold.ttf");

  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "italic";
  src: url("./segoe-ui-4-cufonfonts/Segoe\ UI\ Italic.ttf");
}

@font-face {
  font-family: "coffee";
  src: url("./paris-van-java-font/ParisVanJava-515OB.ttf");

  font-weight: normal;
  font-style: normal;
}

body {
  background-color: #85847f;
  font-family: "segoe-ui";
}

header {
  border-bottom: 0px solid #f9f7fe;
  padding: 0 0 5px 0;
}
h2 {
  font-size: 88px !important;
}
#weather-app {
  color: #968da0;
  max-width: 600px;
  margin: 30px auto;
  padding: 30px;
  background-color: white;
  background-image: url(./images/david-ballew-pH6-eomaijQ-unsplash.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 25px;

  text-align: center;

  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  border-radius: 16px;
}
#temperatures {
  display: flex;
}
#forecastTemperature {
  justify-content: space-between;
  margin: 2px;
  font-size: 15px;
}
#cityName {
  margin: 0;
  font-size: 90px !important;
  line-height: 48px;
  font-weight: bold;
  color: white;
  font-family: "coffee";
}
#wind-humidity {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 18px;
  font-family: "italic";
  color: white;
}
strong {
  color: #e8a716;
}
#humidity {
  display: flex;
  justify-content: space-between;
  margin-right: 30px;
}

#humidity-value {
  margin-left: 10px;
  position: relative;
  bottom: 3px;
}
#windSpeed-value {
  margin-left: 10px;
  position: relative;
  bottom: 3px;
}

#wind {
  display: flex;
}
#forecast-container {
  margin-top: 10px;
}
.search-input {
  width: 60%;
  border: none;
  border-radius: 15px;
  font-size: 16px;
  padding: 15px 20px;
  background-color: #f9f7fe;
}
.search-button {
  background-color: #333b44;
  border: none;
  font-size: 16px;
  color: white;
  padding: 15px 30px;
  margin-left: 5px;
  border-radius: 20px;
}

#temperature-value {
  font-size: 45px;

  font-weight: bold;
  line-height: 88px;
  display: inline-block;
  transform: scaleY(2);

  transform-origin: center;
  color: whitesmoke;
  font-family: "coffee";
}
#temperature-icon {
}

#today {
  font-size: 18px;
  /* line-height: 88px; */
  border: 0px solid blanchedalmond;

  color: white;

  font-family: "italic";
  border-radius: 20px;
}
#description {
  color: white;
  font-size: 20px;
  font-family: "italic";
}
#weatherDescription {
  position: relative;
  bottom: 10px;
}
.forecast {
  font-size: 19px;
  padding: 20px;
  border: 3px solid blanchedalmond;
  color: white;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  border-radius: 16px;

  margin: 2px;
}
.forecast {
  transition: all 150ms ease-in-out;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}
.forecast:hover {
  filter: contrast(80%);
  font-size: 15px;
  background-color: #baa482;

  cursor: pointer;
}
a {
  text-decoration: none;
  color: #20242f;
}

footer {
  border-top: px solid #f9f7fe;
  font-weight: 500;
  font-size: 14px;
  margin-top: 30px;
  color: white;
}
img,
svg {
  vertical-align: 0%;
}
