body {
  font-family: "Sour Gummy", sans-serif;
  background: linear-gradient(
    180deg,
    rgba(30, 86, 160, 1) 0%,
    rgba(22, 49, 114, 1) 100%
  );
  background-size: 100% 200%;
  background-repeat: no-repeat;
}

.app-styling {
  background: rgb(214, 228, 240);
  max-width: 600px;
  margin: 50px auto;
  padding: 50px;
  border-radius: 16px;
  box-shadow: rgba(214, 228, 240, 0.7) 0px 5px 15px;
}

.search-form {
  display: block;
  margin-top: 0px;
  text-align: center;
  margin-bottom: 10px;
}

#city-search-input {
  display: inline;
  width: 60%;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  padding: 17px;
  margin-right: 10px;
  background: #f6f6f6;
  font-family: "Sour Gummy", sans-serif;
}

#city-search-submit {
  display: inline;
  width: 15%;
  font-size: 16px;
  padding: 15px;
  border-radius: 5px;
  border: 2px solid transparent;
  background: #163172;
  color: #f6f6f6;
  transition: all 150ms ease-in-out;
  font-family: "Sour Gummy", sans-serif;
}

#city-search-submit:hover {
  color: #163172;
  background: none;
  border: 2px solid #163172;
  cursor: pointer;
}

#city-name {
  text-align: center;
  font-size: 50px;
  margin: 0px;
  padding-top: 20px;
  padding-bottom: 10px;
}

#date {
  text-align: center;
  font-size: 25px;
  margin: 0px;
}

#time {
  text-align: center;
  font-size: 20px;
  margin: 0px;
}

#icon {
  display: flex;
  justify-content: center;
}

img {
  width: 25%;
  height: auto;
}

#details-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

#temp {
  text-align: center;
  font-size: 50px;
  margin-left: 100px;
  color: #163172;
}

#conditions {
  text-align: center;
  font-size: 25px;
  margin-right: 100px;
}

.colour-blue {
  color: #163172;
  font-weight: bold;
}

.weather-forecast {
  display: flex;
  justify-content: space-around;
}

.forecast-date {
  text-align: center;
  font-size: 22px;
  padding: 10px;
}

.forecast-icon {
  display: block;
  margin: 0 auto;
  width: 85px;
  height: 85px;
}

.forecast-temperatures {
  text-align: center;
  display: flex;
  justify-content: center;
}

.forecast-temp {
  padding: 10px;
  font-size: 20px;
  margin-bottom: 20px;
}

.forecast-temp strong {
  color: #163172;
}

footer {
  text-align: center;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
  padding-top: 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
}

a {
  color: #163172;
}
