* {
    font-family: Arial, Helvetica, sans-serif;
    padding: 0;
    margin: 0;
}
header {
    border-bottom: 5px #f1733d double;
    height: 200px;
}
footer {
    border-top: 2px #f1733d solid;
    background-image: linear-gradient(#ffbd59, #f1733d);
/*     position: absolute;
    bottom :0px; */
    width: 100%;
}
main {
    height: fit-content;
    overflow: hidden;
}

nav {
    margin-bottom: 55px;
}

/* articles and article classes*/
article {
    float: left;
}
.postupke {
    width: 45%;
    height: 350px;
 }
.ingrendients {
   width: 25%;
   height: 350px;
   border-right: #f1733d solid 2px;
   margin-left: 10%;
   margin-right: 65px;
   padding-right: 25px;
}

/* img */
.logo {
    height: 200px;
}
.foodimg {
    float: right;
    padding: 15px;
}


/* nav */
.nav {
    display: inline;
    float: right;
    padding: 10px;
    border-top: 0px;
    font-size: 1.35em;
}

h1,h2,a {
    color: #f1733d;
    margin-bottom: 30px;
}

/* hover */
a:hover {
    color: white;
    transition: color 1s;
}
.nav:hover {
    background-color: #f1733d;
    transition: background-color 1s;
}



/* text and text classes*/
h1 {
    text-align: center;
}
.description {
    width: 450px;
}
.footertext {
    text-align: center;
    color: white;
    padding: 15px;
    margin: 0px;
    font-weight: bolder;
}

/* inline */
strong {
    color: #f1733d;
}

@media only screen and (max-width: 850px) {
    .nav {
        display: block;
        width: 100%;
        text-align: center;
        background-image: linear-gradient(#ffd089, #ff8855);
        border-bottom: #f1733d solid 2px;
        color: white;
        height: 15px;
        font-size: 1.15rem;
    }
    header {
        text-align: center;
    }
    .foodimg {
        float: none;
    }
    .ingrendients {
        border-right: none;
        border-bottom: #f1733d solid 2px;
        width: 75%;
        height: fit-content;
        padding-bottom: 35px;
    }
    h1 {
        margin-top: 15px;
    }
    .postupke {
        width: 75%;
        margin-bottom: 35px;
    }
    article {
        float: none;
        display: block;
        margin: 0px;
        padding: 0px;
        margin: auto;
    }

}