* {
  margin: 0;
}

.jumbotron {
  display: flex;
  background-color: blue;
  color: white;
  align-items: center;
  justify-content: center;
  height: 50px;
}

.forecast {
  height: 200px;
  width: 100px;
}

.row-city {
  height: 200px;
  border: solid black 1px;
  margin-top: 10px;
}

.row-forecast {
  height: 200px;
  /* border: solid black 1px; */
  margin-top: 10px;
}

#search {
  background-color: blue;
  color: white;
  border-radius: 5px;
  padding: 5px;
  width: 250px;
}

#historybutton {
  background-color: lightgray;
  color: black;
  border-radius: 5px;
  padding: 5px;
  width: 250px;
  margin-top: 5px;
}

#search-form {
  font-weight: bold;
  font-size: xx-large;
}

#formCityInput {
  width: 250px;
  padding: 5px;
}

#search-history {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  padding-top: 5px;
}

.list-group {
  padding-left: 0px;
}
.list-group-item {
  padding: 5px;
  margin-top: 2px;
  width: 250px;
}

li {
  list-style-type: none;
}

#main-output {
  padding-left: 5px;
}

#forecastbox {
  background-color: #32475a;
  color: white;
  margin: 5px;
}

.red {
  background-color: red;
}
.yellow {
  background-color: yellow;
}

.green {
  background-color: green;
}
