/*
font-family: 'Fredericka the Great', cursive;
font-family: 'Oswald', sans-serif;
font-family: 'Open Sans', sans-serif;
*/

* {
  box-sizing: border-box;
  
}

body {
  background-image: url('background-img.jpg');
  background-size: 100% auto;
  background-repeat: repeat-y;
  display: flex;
  font-family: 'Open Sans', sans-serif;
  color: white;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 10%;
  padding-right: 10%;
  background: rgba(0, 0, 0, 0.75);
  padding-bottom:10px;
  justify-content: center;
}

p {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  text-align: center;
  color: whitesmoke;
  padding-top: 0px;
  padding-left: 10px;
  padding-right: 10px;
  letter-spacing: 0.15rem;
}
form {
  text-align: center;
}
 
h1 {
  font-weight: bolder;
  letter-spacing: 0.15rem;
  color: white;
  padding-top: 2rem;
  padding-bottom: 2rem;
  
}

h2 {
  font-weight: bolder;
  letter-spacing: 0.15rem;
  color: white;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 10px;
}

label {
  font-weight: bolder;
  letter-spacing: 0.15rem;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  text-align: center;
  color: whitesmoke;
  padding-left: 10px;
}


.displayRecipes {
  display: inline-block;
  width: 100%;
  justify-content: space-between;
}

.results-js {
  color: white;
  margin: 10px;
  padding: 15px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.6);
}


.title {
  font-family: 'Fredericka the Great', cursive;
  font-size: 60px;
  text-align: center;
}

.top {
  display: inline-flex;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
}

.displayRecipes h3.top {
  vertical-align: top;
  font-weight: bolder;
  color: palevioletred;
  padding-left: 10px;
}

h3 {
  vertical-align: top;
  font-weight: bolder;
  letter-spacing: 0.15rem;
  color:rgba(47, 231, 255, 0.562);
  padding-top: 2rem;
  padding-left: 20px;
}


.displayRecipes img {
  max-width: 250px;
  width: 50vw;
  padding-left: 20px;
}

ul {
  padding-top: -2rem;
  
}

li { 
  font-weight: bolder;
  letter-spacing: 0.15rem;
  color: rgba(255, 255, 0, 0.747);
  padding-left: 20px;
  padding-bottom: 2px;
  
}
.missed-ingredients {
  float: right;
  margin: 15px;
}

.missed-ingredient-item {
  list-style-type: none;
}

.footerNames {
  padding: 5px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 15px;
}

.hidden {
  display: none;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
}

@media only screen and (min-width: 600px) {
  /* For tablets: */
  .title {
    font-size: 75px;
  }
}
@media only screen and (min-width: 1080px) {
  /* For desktop: */
  .displayRecipes img {
    max-width: 350px;
    padding-left: 20px;
  }

  .title {
    font-size: 85px;
  }
}