body {
  font-family: 'Helvetica';
  background-color: white;
}

.filter-buttons {
  display: flex;
  margin-bottom: 20px;
}

.list-view-button,
.grid-view-button {
  color: white;
  border: 1px solid white;
  padding: 5px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 3px;
}

.list-view-button:hover,
.grid-view-button:hover {
  background: white;
  color: #0e2439;
}

.grid-view-button {
  margin-right: 10px;
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

li {
  background-color: #1f364d;
  color: white;
  border-radius: 3px;
  margin-bottom: 10px;
  transition: 0.3s;
}


.list.list-view-filter {
  flex-direction: column;
}

.list.list-view-filter li {
  padding: 10px;
}

.list.grid-view-filter {
  flex-flow: row wrap;
  
}

.list.grid-view-filter li {
  width: calc(60% - 75px);
  padding: 15px;
  margin-left: 5px;
  margin-right: 5px;
  text-align: center;
}

.responsive {
    width: 60%;
    height: auto;
}

h2 {
    color: #85200c;
}

h3 {
    color: #85200c;
}

p {
    color: black;
}

.btn-primary {
    background-color: #063970;
    color: white;
}

hr {
  border-top: .5px solid #6c615c;
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;

}

