/* Trove Weather CSS */


body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
}


header {
  background-color: black;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 20px;
}

/* Conatiner logic */
.container {
  background-color: white;
  color: black;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100vw;
}

.search {
  background-color: white;
  color: black;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin: 5px;
}

.results {
  background-color: white;
  color: black;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin: 5px;
}

/*  forecast is for 6 days with main windows and 5 cards */
.forecast {
  background-color: white;
  color: black;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.card {
  background-color: blue;
  color: white;
  margin: 3px;
}
