
header{
    background-color: skyblue;
    display: flex;
    align-items: center;
}

header img{
    width: 100px;
    flex: 0;
}

header nav{
    flex: 1;
    display: flex;
    justify-content: space-evenly;
}

header nav a{
    text-transform: uppercase;
    text-decoration: none;
    color: black;
    transition: .5s;
    font-weight: bold;
}

header nav a:hover{
    /* transform: scale(1.1); */
    color: blue;
    
}

footer{
    background-color: burlywood;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
}

main{
    padding: 10px 20px 50px 20px;
}
img{
    width: 50%;
    display: block;
    margin: 20px auto;
}
h1{
    text-align:center;
}
h2{
    text-align:center;
}
.owner-image{
    float: left; 
    width: 570px; 
    margin-right: 50px; 
}
.recipe-image{
    float: left; 
    width: 510px; 
    margin-right: 50px;
}
.churtney-image{
    float: left; 
    width: 570px; 
    margin-right: 50px;
}

table,td {
    border: 3px solid black;
    border-collapse: collapse;
    

}

td {
    border: 3px solid black;
    font-size: 15px;


}