* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    width: 100%;
    height: 100%;
    background: #f8f8f8;

}

html {
    scroll-behavior: smooth;
}

/* ........ Scrollbar........ */
::-webkit-scrollbar {
    width: 1rem;
}

::-webkit-scrollbar-track {
    background-color: #252424;
}

::-webkit-scrollbar-thumb {
    background-color: rgb(101, 97, 97);
    border-radius: 10px;
    border: 4px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background-color: aliceblue;
}

header {
    height: 60px;
    width: 100%;
    color: #fff;
    background-color: #3b3a3a;
    display: flex;
    align-items: center;

}


/* Nav-bar */

nav {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
}

.logo h1 {
    font-size: 30px;
}

.nav-links {
    margin-left: auto;
}

.nav-links li {
    display: inline-block;
    margin: 0 15px;
    font-size: 18px;
    font-weight: 550;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
}

.nav-links a:hover {
    color: #4CAF50;
}

.nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn i {
    font-size: 25px;
    margin: 0 6px;
    display: none;
}

/* ..................container................... */
.contentbox {
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 60px;
    border: black 10px double;
    border-radius: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.7);
}

.contentbox p {
    text-align: center;
    width: 100%;
    min-height: 15px;
}

h1 {
    text-align: center;
}

.pre-time {
    height: auto;
    width: 400px;
    border: 2px solid rgb(136, 60, 222);
    background-color: rgba(136, 60, 222, 0.2);
    padding: 20px 40px;
    margin: auto;
}

.line {
    /* border: 0px;
    background: #000;
    height: 1.2px; */
    margin: 20px auto;


}

span {
    font-weight: 650;
}

.ingredients {
    margin: auto;
    padding: 20px;
}

.instructions {
    padding: 10px 20px;
}

.instructions li {
    margin-bottom: 15px;

}

.aditional {
    font-weight: 250;
    padding: 20px;
}



/* media Query*/
@media only screen and (min-width: 768px) {
    .menu-icon {
        display: none;
    }

    #nav-list {
        display: block;
    }

}

@media only screen and (max-width: 768px) {
    .logo h1 {
        font-size: 20px;
    }

    #menu {
        display: none;
    }

    #menu {
        background-color: #515050;
        width: 100%;
        position: absolute;
        top: 60px;
        right: 0;
        text-align: center;
        height: auto;
    }

    #menu li {
        display: block;
        margin: 10px 0;
    }

    .nav-btn i {
        display: block;
    }

    #close-Icon {
        display: none;
        font-size: 30px;
    }

    .pre-time {
        width: 100%;
    }

    .contentbox {
        padding: 20px 20px;
    }
}




/* Footer */
footer {
    background: #333;
    padding: 20px 0;
    color: #fff;
    text-align: center;
}

footer p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
}