/*Universal styles*/
html {
  font-size: 16px;
  font-family: 'Calibri', sans-serif;
  background-color: #4A5180;
  color: white;
  height: 100%;
}

body {
  height: 100%;
  display: flex;
}

h2 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0.5rem 0rem 0.5rem 0rem;
}

h5 {
  font-size: 1.2rem;
  padding: 0.75rem;
}

a {
  color: white;
  text-decoration: none;
}

/*Main body*/
.main {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content:  center; /*Changes to flex-start when displaying search results*/
  padding: 1rem;
}

/*Search Bar*/
.search-bar {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.input-field {
  display: block;
  align-items: center;
  padding: 0.75rem;
}

#text-box {
  width: 2.1rem;
  height: 2rem;
  font-size: 1rem;
  padding: 0.25rem;
  display: inline;
  outline: none;
  border: 3px solid #FFF78D;
  border-radius: 2em;
  background-color: #4A5180;
  color: white;
}

/*Search results*/
.results {
  padding: 0.75rem;
}

li {
  background-color: #F0F0F3;
  color: black;
  width: 90%;
  margin: 1rem 1rem 1rem 2rem;
  padding: 1rem;
  border-left: 5px solid #4A5180;
}

li:hover {
  border-left: 5px solid yellow;
}
