:root {
  background: #fafafa;
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

.canteen {
  font-size: 1.1em;
}

.mealname {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 0.5em;
}

.title {
  font-size: 2em;
  margin: 2%;
  padding: 0;
  text-align: center;
}

.resultcards {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
}

.individual-result {
  display: flex;
  width: 30%;
  flex-direction: column;
  border: 1px solid #e6e6e6;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  margin: 1%;
  background-color: #fff;
  transition: 0.2s;
  flex-grow: 0;
}

@media (max-width: 1300px) {
  .individual-result {
    width: 100%;
  }
}

.individual-result:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);  
}

.result-textcontent {
  padding: 3%;
}

.image-header {
  width: 100%;
  height: auto;
}