html {
    font-family: 'Quicksand', sans-serif;
    background-color: rgb(231, 244, 229);
    font-size: 15pt;
}
body {
    margin: 3rem auto;
    width: 80%;
    max-width: 1000px;
    font-weight: 600;
}
h1 {
    font-size: 35pt;
    color: rgb(167, 38, 81);
    margin-top: 0;
    position: relative;
    top: -0.28em;
}

h2 {
    font-size: 20pt;
    color: rgb(167, 38, 81);
}
h3 {
    font-size: 15pt;
    color: rgb(199, 89, 125);
}
p, li {
    color: rgb(208, 123, 151);
}
a {
    color:rgb(199, 89, 125)
}
.source {
    color:rgb(208, 123, 151);
}
.header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
    border-color:rgb(199, 89, 125);
    border-style: solid;
    border-width: 2px;
}
header {
    display: grid;
    column-gap: 1rem;
    row-gap: 1rem;
}
.source {
    margin-top: -40px;
    margin-bottom: 30px;
}
@media (min-width: 640px) {
    header {
        grid-template-columns: 1fr 1fr;
    }
    .ingredients {
        float: left;
        width: 50%;
        margin-bottom: 3000px;
        margin-right: 40px;
        column-gap: 15px;
    }
    .instructions {
        padding-top: 1px;
    }
    .recipe-information {
        padding-left: 30px;
    }
}