#recipe-container {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    width: 85%;
    margin: auto;
    padding: 40px;
    border-radius: 20px;
    text-align: left;
}

.tite {
    font-size: 2em;
    color: #8b4513;
}

p, ul, ol {
    font-size: 1em;
    line-height: 1.5;
    text-align: justify;
}

.highlight {
    background-color: #9ef491;
    color: black;
}


/* adding special styling using ::selection */
::selection {
    background-color: #ffebb5;
    color: #8b4513;
}

/* code for Mozilla Browsers */
::-moz-selection {
    background-color: #ffebb5;
    color: #8b4513;
}

/* code for Other Browsers if selection isn't working */
::-webkit-selection {
    background-color: #ffebb5;
    color: #8b4513;
}
