* {
    padding: 0;
    margin: 0;
    
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
}

/** Generic Fonts **/

h1 {
    font-family: 'Philosopher', sans-serif;
    font-size: 2.3em;
    margin: 10px 0px;
}

h2, h3 {
    font-family: 'Philosopher', sans-serif;
    font-size: 2rem;
    margin: 10px 0px;
    
}

h4 {
    font-family: 'Philosopher', sans-serif;
    font-size: 1.5rem;
}

p {
    margin-bottom: 10px;
    line-height: 2rem;
}

.kanji {
    font-family: 'Inria Sans', sans-serif;
    color: #C7B100;
}


/** Generic styles **/
.mobile {
    display: none
}

#title {
    text-align: center;
}

#header-img {
    display: block;
    margin-bottom: 100px;

    width: 100%;
    height: 500px;
    background-image: url("../assets/images/header_img.png");
    background-size: cover;
    background-position: center;
}

img {
    display: block;
    margin: 50px 0px;

    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.intro {
    margin: 0px 150px 150px 150px;
    max-width: 1920px;
}

#intro-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

#intro-text {
    width: 90%;
}

#quick-info {
    margin-left: 150px;
    width: 30%;
    min-width: 100px;

    font-size: 1.2rem;

    border-style: solid;
    border-color: #C7B100;
    border-width: 4px;

}

/* WIDTH OF 350px */
#left {
    padding: 20px 100px 20px 100px;
    width: 200px;
    height: 100%;

    position: fixed;

    border-right: solid;
    border-color: #C7B100;
    border-width: 2px;

    background-color: #ECECEC;

}

#right {
    margin-left: 400px;
}


/** Specific styles **/
.intro div {
    padding: 10px;
}

#quick-info ul {
    list-style-type: none;
}

#quick-info h4 {
    margin-top: 15px;
    margin-bottom: 5px;
}

#left div {
    margin-bottom: 2vh;
}

#left ul {
    list-style-type: none;
    padding-left: 0;
}

#left li {
    line-height: 2rem;
}

#left li:before {
    content: "☐"; /* or any other checkbox symbol you prefer */
    margin-right: 0.5em;
}

#left li.checked:before {
    content: "☑"; /* or any other checked checkbox symbol you prefer */
}


#right li {
    line-height: 2rem;
}

.recipe div {
    margin: 0px 150px;
    padding: 0px 25px 25px 25px;
}

.recipe ul, .recipe ol {
    margin-bottom: 25px;
}

@media (max-width: 1700px) {   

    #intro-section {
        display: inline-block;
    }

    #quick-info {
        width: 98%;
        text-align: center;
        margin-left: 0;
    }

    #left {
        padding: 20px 75px;
    }

    #right {
        margin-left: 352px;
    }

    .recipe div {
        margin: 0px 150px;
        padding: 0px 25px 25px 25px;
    }
}

@media (max-width: 1100px) {
    .mobile {
        display: block !important;
    }

    h1 {
        font-size: 1.7rem;
    }

    h2, h3, h4 {
        font-size: 1.3rem;
    }

    p, li {
        font-size: 0.995rem;
    }

    #quick-info {
        display: none;
    }

    #left {
        display: none;
        position: static;

        width: 100%;    
    }

    #left div {
        margin-left: 25%;
    }

    #right {
        margin-left: 0px;
    }

    .recipe div {
        margin: 0px 100px;
        padding: 0px 20px 20px 20px;
    }
}

@media (max-width: 820px) {
    img {
        width: 100%;
    }

    .recipe div {
        margin: 0px 50px;
        padding: 0px 20px 20px 20px;
    }
}

@media (max-width: 440px) {
    .recipe div {
        margin: 0px 15px;
    }
}

@media (max-width: 360px) {
    .recipe div {
        margin: 0px 5px;
    }
}