body {
  background-color: #D8FFDD;
  font-family: 'NotoSans';
  padding: 0px;
  position: relative;
  margin: 0;
  padding-bottom: 6rem;
  min-height: 100%;
}

.header {
  padding: 20px 60px 20px 60px;
  text-align: left;
  background: ForestGreen;
  color: white;
}

.title {
  margin-bottom: 20px;;
}
html {
  height: 100%;
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

.footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  background-color: #D8FFDD;
  text-align: center;
}

#content {
  margin: 20px;
}

.card {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  border-radius: 5px; /* 5px rounded corners */
  background: white;
}

/* On mouse-over, add a deeper shadow */
.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

/* Add some padding inside the card container */
.container {
  padding: 2px 16px;
  display:flex;
  justify-content:center;
}

.container-food-form {
  display:flex;
  flex-direction: row;
  justify-content:center;
}

.food-form {
  display: flex;
  flex-direction: column;
  color: black;
  width:300px;
  font: 380 14.3333px Verdana;
}

.food-form-text {
  margin: 0px 0px 0px 0px;
  margin-left: 18%;
}

.enter-food{
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  padding: 10px 20px;
  font: 15px Arial;
  background: #ffffff;
  margin: 15px 0px 15px 0px;
  color: black;
  border: 0px;
  border-radius: 30px;
}

.submit-food{
  padding: 10px;
  margin-bottom: 20px;
  border: none;
  background-color: #2a7f1f;
  color: #fff;
  font-weight: 550;
  border-radius: 5px;
  width: 100%;
}