@charset "utf-8";
/* CSS Document */

body{
   

}

h1{
    text-align: center;
    
}


h2{
    padding-top: 25px;
}


h3{
    text-decoration: none;
}

p{
    font-family: inherit;
    
    text-align: center;
    padding-left: 10%;
    padding-right: 10%;
}






.recipe-wrapper {
 display: grid;
 align-items: center; 
 grid-template-columns: 1fr 1fr 1fr;
 column-gap: 40px;
    margin-bottom: 6em;
}

.recipe-image {
  display: inline-block;
  width: 33%;
  text-align: center;
  margin-bottom: 1em;
    margin-left: 3em;
}

.recipe-text {
  display: inline-block;
  background-color: white;
  width: 140%;
  height: 100;
  padding: 1em 1.5em 0.5em 1.5em;
}





 /* Smaller devices (925px and down) */
  @media only screen and (max-width: 925px) {
    .recipe-title {
      margin-bottom: 0;
    }

    .recipe-wrapper {
      display: block;
      margin: 0 4em;
      text-align: center;
    }

    .recipe-image {
      width: 100%;
      margin-top: 3em;
    }

    .recipe-text {
      width: 100%;
      height: 180px;
    }
  }

      /* Mobile devices (670px and down) */
  @media only screen and (max-width: 670px) {
    .recipe-text {
      height: 200px;
    }
      

      /* Mobile devices (600px and down) */
      @media only screen and (max-width: 600px) {
        .recipe-text {
          height: 215px;
        }
    
      }
    }
    
  /* Mobile devices (560px and down) */
  @media only screen and (max-width: 560px) {
    .recipe-text {
      font-size: smaller;
      height: 200px;
    }
  }




.button {
  border: none;
  color: #2b113f;
  padding: 3px 10px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
    border-radius: 10px;
}

.button1 {
  background-color: #2b113f; 
  color: white; 
  border: 2px solid #2b113f;
  
}

.button1:hover {
  background-color: #2b113f;
  color: white;
    opacity: 80%;
}
   
