html {
  height: 100%;
  width: 100%;
}
body {
  margin: 0;
  overflow: hidden;
}

.introP {
  text-align: center;
  font-family: "Comfortaa", sans-serif;
  font-size: 50px;
  font-weight: lighter;
  font-color: black;

  box-shadow: inset 10000px 0 0 0 #c83e4d;
  color: black;
  margin: 0 -0.25rem;
  padding: 0 0.25rem;
  transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;

  animation-duration: 5s;
  animation-name: turnRed;
}

@keyframes turnRed {
  from {
    box-shadow: inset 0 0 0 0 #c83e4d;
    color: black;
  }
  to {
    box-shadow: inset 10000px 0 0 0 #c83e4d;
    color: black;
  }
}

.aboutParagraph {
  cursor: help;
  padding-left: 300px;
  padding-right: 300px;
  margin-top: 50px;
  color: black;
  font-size: 20px;
  text-align: center;
  padding-top: 18px;
  padding-bottom: 18px;
  line-height: 26px;
  margin-bottom: 15px;
  font-family: "PT sans", sans-serif;
}

.sampleR {
  padding-left: 50px;
  font-family: "PT sans", sans-serif;
}
.sampleRecipes {
  font-size: 20px;
  font-family: "PT sans", sans-serif;
  padding-left: 50px;
  color: black;
}

/*
.j transitions from https://css-tricks.com/css-link-hover-effects/ 
*/

.j {
  background-image: linear-gradient(to right, #c83e4d, #c83e4d 50%, #000 50%);
  background-size: 200% 100%;
  background-position: -100%;
  display: inline-block;
  padding: 5px 0;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
}

.j:before {
  content: "";
  background: #c83e4d;
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  transition: all 0.3s ease-in-out;
}

.j:hover {
  background-position: 0;
}

.j:hover::before {
  width: 100%;
}
#food-image-container {
  margin: auto 10px;
  display: flex;
  justify-content: space-evenly;
}
.food-image {
  border-radius: 50%;
  height: 300px;
  width: 450px;
}
