*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-image: linear-gradient(to top, #e6b980 0%, #eacda3 100%);
    border-bottom: 1px solid black;
    width: 100%;
    height: auto;
}

#logo img{
    margin-left:0;
    width:135px;           
    height:auto;
    max-width:100%;
}

#navigation-items{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    gap: 1.5rem;
    margin-right: 70px;
}

li a{
    color: whitesmoke;
    font-size: 2rem;
}

footer{
    background-image: linear-gradient(to top, #e6b980 0%, #eacda3 100%);
    border-top: 1px solid black;
    width: 100%;
    height: auto;
    padding:2rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#Contact{
    font-size: 40px;
}

#copyright{
    margin-top: 40px;
    font-size: 25px;
}

main{
    background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.recepie-card{
    margin: 2rem auto;
    width: 90%;
    max-width: 1300px;
    min-height: 220px;
    padding: 1.25rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 8px 8px 10px 5px grey;

    display: flex;
    justify-content: space-between;
}

.imagebox{
    margin: 0.3rem;
    border-radius: 10px;
    overflow: hidden;
    width: 45rem;
    height: 20rem;
}

.imagebox img{
    width: 100%;
    height: 100%;
}

.textbox h1{
    font-size: 65px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.textbox p{
    font-size: 30px;
}

@media (max-width: 600px){
    .recepie-card{
        flex-direction: column;
    }

    #Contact{
        font-size: 25px;
    }

    #copyright{
        font-size: 16px;
    }

    .imagebox{
        max-width: 100%;
    }

    .textbox h1{
        font-size: 45px;
    }

    .textbox p{
        font-size: 25px;
    }

    li a{
        font-size: 20px;
    }

    #logo img{
        width: 70px;
        height: auto;
    }
}
