strong{
    font-weight: bold;
}


    body{
        text-align: center;
        font-family: "Fredoka", sans-serif;
        background-image: url('../../img/businessCardFront.jpg');
        background-size: 100% 100%;
        background-repeat: no-repeat;
    }
    .desktopNav{
        display: none;
    }

    /* Mobile Navigation Menu */
    .mobileNav{
        position: fixed;
        top: 10px;
        left: 10px;
        z-index: 1002;
    }

    /* hide checkbox */
    .menuCheckbox{
        display: none;
    }

    /* hamburger button */
    .menuButton{
        position: relative;
        z-index: 1003;
        display: inline-block;
        cursor: pointer;
    }

    .menuButton span{
        display: block;
        width: 40px;
        height: 8px;
        margin: 4px;
        background-color: rgb(255, 255, 255);
        transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s ease;
    }

    /* sliding drawer */
    .menuBar{
        position: fixed;
        top: 0;
        left: 0;
        width: 75vw;
        height: 100vh;
        padding-top: 80px;
        background-image: url('../../img/businessCardBackLeft.jpg');
        background-repeat: no-repeat;
        background-size: 100% 100%;
        overflow-y: auto;
        max-width: 500px;

        transform: translateX(-100%);
        transition: transform 0.3s ease;

        z-index: 1001;

        -webkit-mask-image: linear-gradient(
            to right,
            transparent 0%,
            black 0%,
            black 90%,
            transparent 100%
        );
    }


    .menuBar a{
        display: block;
        margin: 1em;
        font-size: 2em;
        color: black;
        text-shadow: 0 2px 4px rgba(0,0,0,0.75);
        justify-self: center;
        text-decoration: none;
    }

    /* actual slide-in */
    .menuCheckbox:checked ~ .menuBar{
        transform: translateX(0);
    }

    /* hamburger turns into X */
    .menuCheckbox:checked + .menuButton span:nth-child(1){
        transform: translateY(12px) rotate(45deg);
        background-color: black;
    }

    .menuCheckbox:checked + .menuButton span:nth-child(2){
        opacity: 0;
    }

    .menuCheckbox:checked + .menuButton span:nth-child(3){
        transform: translateY(-12px) rotate(-45deg);
        background-color: black;
    }

    /* End of Nav */

    .recipe{
        box-sizing: border-box;
        margin: auto;
        background-image: url('../../img/businessCardBackLeft.jpg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        width: 100%;
        max-width: 900px;
        padding: 80px 20px 30px 20px;
        overflow-x: hidden;
        overflow-y: auto;

    }
    

    .recipe h1{
        font-size: 2.2rem;
        font-size: 32px;
        justify-self: center; 
    }

    .recipe p{
        font-size: 1.1rem;
        font-size: 18px;
    }

    .recipe h2{
        font-size: 1.6rem;
        justify-self: center;
        align-self: start;
    }

    .recipe ul{
    margin: 0;
    padding: 0;
    list-style-position: inside;
    }

    .recipe li{
        word-wrap: break-word;
        overflow-wrap: break-word;
    }