*{
    padding: 0;
    margin: 0;
}

main{
    background-color:white;
    margin: 40px;
    }

header{
    background-color: rgb(226, 165, 11);
    display: flex;
    align-items: center;
}

header nav{
    flex: 1;
    display: flex;
    justify-content: space-evenly;
}

header img{
    width: 150px;
    flex: 0;
}

nav a{
    text-decoration: none;
    color: black;
    transition: .5s;
    font-weight: bold;
    font-size: larger;
}

a#active{
    font-weight: bold;
    color: black;
    text-shadow: 1px 1px 5px white;
}

p{
    margin: 30px 10px;
    font-size: 20px;
    font-family:Georgia, 'Times New Roman', Times, serif;
    }

.owner-image {
    float: left; 
    width: 600px; 
    margin-right: 50px; 
}

.recipe-image {
    float: right; 
    width: 350px; 
    margin-left: 50px; 
}

h1{
    font-size: xx-large;
}

li{
    margin: 5px 40px;
}

h2{
    margin: 10px;
    font-style: italic;
    font-size: xx-large;
    
}

h3{
    margin: 10px;
    font-size: x-large;
    font-style: italic;
}

h3 a{
    color: black;
    text-decoration: none;
}

section{
    margin: 40px 50px;
    }

footer{
    background-color: rgb(226, 165, 11);
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    
}





