@charset "UTF-8";
  body {
    color: black;
    background-color: orange;
  }

    .ingredient_name {
        font-weight: bold;
    }
    .method_head {
        text-decoration: underline;
        font-weight: bold;
    }
            .ingredient_subheading {
                color: blue;
                margin: 6px 0;
                text-decoration: underline;
                font-size: 1.2em;
            }
    .recipe_ingredients {
        margin-left: 20px;
    }
        .recipe_ingredients > li {
            padding-left: 20px;
        }

/* If the screen size is 601px wide or more, set the font-size of <div> to 80px */
@media screen and (min-width: 601px) {
  body {
    background-color: lightblue;
  }
  h1 {
    font-size: 40px;
    color: orange;
  }
  h2 {
    font-size: 40px;
    color: purple;
  }
}