.search-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 20px;
}

input {
  height: 30px;
  width: 300px;
  border: 0;
  outline: 0;
  background: transparent;
  border-bottom: 1px solid black;
  text-align: center;
}

.cuisineType {
  margin: 0px;
  text-align: center;
}

.cookingTime {
  text-align: center;
  margin-bottom: 10px;
}

h1, h5, h6 {
  text-align: center;
}

.filters {
  padding-left: 70px;
}

.recipes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.recipe {
  background: lightcoral;
  padding: 10px;
  width: 380px;
  min-height: 450px;
  margin: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.recipe-count {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}


img {
  width: 350px;
  height: 300px;
  object-fit: cover;
}

a:link {
  color: black;
  background-color: transparent;
  text-decoration: underline;
}

a:visited {
  color: black;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: black;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: black;
  background-color: transparent;
  text-decoration: underline;
}