html,
body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: #ccc;
    padding: 0;
    margin: 0;
    border: 0;
    width: 100%;
    min-height: 100%;
}

* {
    box-sizing: border-box;
}

.centering {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
    background-color: #fff;
    min-height: 100%;
    /*overflow: auto;*/
}

header {
    font-size: 2em;
}

header h1 {
    font-size: inherit;
    display: inline;
    font-weight: normal;
}

.recipeimage {
    width: 50%;
    float: left;
}

.recipeinfo {
    display: inline-block;
}

.ingredients {
    display: inline-block;
}

.instructions {
    display: inline-block;
}

.break {
    clear: both;
}

.centering:after {
    content: ".";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

ul.recipeIndexList {
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-top: 10px;
}

ul.recipeIndexList li {
    display: inline-block;
    margin: 5px;
}

ul.recipeIndexList li a {
    display: inline-block;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #55f;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
}