*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    background-color: yellowgreen;
}

header{
    background-color: greenyellow;
    font-size: 40px;
    text-align: center;
}

h1, h2{
    color: purple;
}

footer{
    background-color: greenyellow;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    padding: 5px;
}

nav{
    background-color: yellowgreen;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

a{
    color: Purple;
    font-size: 40px;
}

ul, ol{
    list-style-type: square;
    list-style-position: inside;
    text-align: center;
}

.inline{
    text-align: center;
    color: blue;
    font-size: 18px;
}

article{
    background-color: greenyellow;
    padding: 15px;
}

#rhonda_gdaughter{    
    width: 25%;
    height: auto;
    margin: 0 auto auto;
}

#rhonda_husband{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 60%;
}

.list_center{
    text-align: center;
}

#chutney{
    display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.recipe_img{
    width: 55%;
    height: auto;
}

.float_div{
    width: 20%;
    height: auto;
    float: right;
    text-align: center;
}

.center_article{
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
}

tr, td, th{
    border: 3px solid black;
    padding: 10px;
}

table{
    border-collapse: collapse;
    padding-top: 100px;
    font-size: 20px;
}
main{
    padding: 100px;
}

#measurement{
    margin: 0 auto;
}

#measurement td{
    border: none;
}

form{
    width: 50%;
    background-color: orange;
    border-radius: 20px;
    padding: 20px;
}

fieldset{
    border-radius: 20px;
    padding: 10px;
}

textarea{
    width: 400px;
    height: 300px;
}

.textbox{
    display: block;
}

h3{
    font-size: 25px;
    margin-top: 30px;
}

h4{
    font-size: 20px;
    margin-top: 20px;
}

.center_button{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.heading{
    text-align: center;
}