@import 'https://fonts.googleapis.com/css?family=Lato:400,700';

body {
  color: black;
  font-family: 'Lato', sans-serif;
  padding: .5em;
  line-height: 1.5;
  width: 100%;

  background-color: black;
}


div#output {
  margin: 0px 20px 0 0;
  padding: 0 0 0 0px;
  display: inline-block;

  width: 100%;
  background-image: linear-gradient(green, yellow, orange, red);
  overflow: scroll;    /*   */

}


select {
  font-family: Arial, sans-serif;
  font-size: 40px;

  margin-left: 40px;
}


div#selector {

  -webkit-appearance: none;

}

div#stagingDiv li {
  text-align: left;
  max-width: 800px;
  margin: 20px 0 30px 40px;
  font-size: 40px;

}


button.remove {
  height: 86px;
  width: 226px;
  font-size: 30px;
  float: right;
}


div#header {

  height: 420px;
  text-align: center;
  width: 100%;
  margin: 0;
  padding: 0px;
  overflow: scroll;
}



/* The animation code */
@keyframes examples3 {
  0%   {background-image: linear-gradient(yellow, lime);}
  25%  {background-image: linear-gradient(yellow, orange);}
  50%  {background-image: linear-gradient(lime, yellow);}
  100% {background-image: linear-gradient(orange, yellow, lime);}
}

/* The element to apply the animation to */
div#header {
  animation-name: examples3;
  animation-duration: 40s;
  animation-iteration-count: infinite;

}



div#nutrientInfo {

  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  height: 420;
  width: 100%;

  /* background-image: linear-gradient(green, yellow, orange, red); */
  color: black;
  overflow: scroll;
}


/* The animation code */
@keyframes examples {
  0%   {background-image: linear-gradient(orange, lime);}
  25%  {background-image: linear-gradient(yellow, orange);}
  50%  {background-image: linear-gradient(lime, yellow);}
  100% {background-image: linear-gradient(orange, yellow, lime);}
}

/* The element to apply the animation to */
div#nutrientInfo {
  animation-name: examples;
  animation-duration: 40s;
  animation-iteration-count: infinite;

}


div.inputGroup {
  margin: 0 0 0 40px;
}

.radio {
  width: 40px;

}


label {
  font-size: 40px;

}

input[type="radio"]{
  margin: 10px 10px 50px 10px;
}



#nutrientInfo p {
  margin: 20px 0 20px 20px;
}

p#ingredientSearchResult {
  margin: 60px 0 40px 40px;
  font-size: 40px;
}

h1, h2, h3 {
  padding: 30px;
}



h1 {
  font-size: 150px;
}

h2 {
  font-size: 100px;
}

h3 {
  font-size: 75px;
}




ul {
  padding-left: 0;
  list-style:  none;


}


ul.inlineUl {
  display: inline-block;
  width: 65%;

}


img {
  display: block;
  width: 35%;
  width: 450px;
  max-height: 300px;
  padding: 40px;
}


/* The animation code */
@keyframes example {
  0%   {background-color: orange;}
  25%  {background-color: yellow;}
  50%  {background-color: orange;}
  100% {background-color: lime;}
}

/* The element to apply the animation to */
img.header1 {
  width: 95%;
  height: 380px;
  margin-top: 40px;
  padding: 10px;
  background-color: lime;
  animation-name: example;
  animation-duration: 20s;
  animation-iteration-count: infinite;
}



li {
  width: 90%;
  margin: 10px auto;
  text-align: center;
  padding: .5rem;
}


.outputLi {
  width: 90%;
  margin: 10px 10px;
  text-align: left;
  padding: 2.8rem 0 2.8rem 2.8rem;
  font-size: 60px;
}

#addButton {
  height: 124px;
  width: 220px;
  margin: 50px 0 50px 0px;
  font-size: 40px;
}

#calculateButton {
  height: 124px;
  width: 220px;
  margin: 50px 0 50px 0px;
  font-size: 40px;

}

#searchButton {


  width: 190px;
  font-size: 50px;
  position: relative;
  top: -6px;
}



#searchButton, #calculateButton, #addButton, button.remove{
  background-image: linear-gradient(yellow, orange);
  color:#000;
  border:none;
  position:relative;
  height:100px;
  font-size:1.6em;
  padding:0 2em;
  cursor:pointer;
  transition:800ms ease all;
  outline:none;
  border-radius: 20%;
}

#searchButton:hover, #calculateButton:hover, #addButton:hover, .remove:hover{
  background:#fff;
  color:blue;
}



div#stateHTML {
  margin-bottom: 40px;
  border-bottom: 1px solid;
}









input#searchInput {

  margin: 40px 40px;
  padding: 10px;
  height: 84px;
  font-size: 50px;
  width: 400px;

}


input#amountTextInput {

  margin: 40px 0;
  height: 84px;
  font-size: 50px;
}


#checkbox {
  height: 86px;
  width: 86px;
  position: relative;
  top: 26px;
  margin-left: 40px;
}





@media only screen and (min-width: 800px){




  input#searchInput {


    margin: 40px 40px;
    padding: 10px;
    height: 54px;
    font-size: 46px;
    width: 400px;

  }

  input#amountTextInput {

    margin: 40px 0;
    height: 54px;
    font-size: 46px;
    padding: 10px;
    width: 400px;

  }


  #checkbox {
    height: 74px;
    width: 74px;
    position: relative;
    top: 19px;
    margin-left: 40px;
  }

  #searchButton, #calculateButton, #addButton, button.remove{
    background-image: linear-gradient(yellow, orange);
    color:#000;
    border:none;
    position:relative;
    width: 180px;
    padding: 4px;
    top: -10px;
    height:84px;
    font-size:16px;
    cursor:pointer;
    border-radius: 20%;
  }

  #calculateButton {
    left: 200px;
    top: -194px;
  }


  button.remove {
    top: 10px;
  }


  select {
    font-family: Arial, sans-serif;
    font-size: 40px;
    margin-left: 40px;
  }


  div#selector {

    -webkit-appearance: none;

  }

  ul.inlineUl {
    display: inline-block;
    width: 35%;

  }


  img {
    display: block;
    width: 65%;
    width: 450px;
    max-height: 300px;
    padding: 40px;
  }


  p#ingredientSearchResult {
    margin: 60px 0 40px 40px;
    font-size: 50px;
  }

  label {
    font-size: 40px;

  }


  li {
    width: 50%;
    margin: 10px auto;
    text-align: center;
    padding: .5rem;
  }





  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 25px;
  }

  ul {
    padding-left: 0;
    list-style:  none;


  }


  ul.inlineUl {
    display: inline-block;
    width: 65%;


  }


  .outputLi {
    width: 90%;
    margin: 10px 10px;
    text-align: left;
    padding: 2.8rem 0 2.8rem 2.8rem;
    font-size: 20px;
  }






}
