html{
    font-size: 150%;
}

body{
    background-color: #ffddbf;
    padding: 20px 60px;
    max-width: 100%;
    box-sizing: border-box;
    line-height: 1.3rem;
}

h1{
    font-size: 200%;
    line-height: 2rem;
}

.site-name{
    font-size: 130%;
}

figure{
    margin: 0 0 20px 0;
}

figure img{
    max-width: min(100%, 700px);
    height: auto;
    border-radius: 5px;
    border: 2px solid black;
}

::selection {
  color: black;
  background: rgb(59, 255, 255);
}


#recipe-grid {
    display: grid;
    grid-template-columns: 500px 700px;
    grid-gap: 30px;
    margin: 0 auto; 
}

#ingredients, #method {
    align-self: start;
}


li{
    padding-bottom: 10px;
}

ol li{
    margin-bottom: 30px;
}

ol p{
    margin: 0;
}

@media (max-width: 1300px) {
    body {
        padding: 20px;
    }

    #recipe-grid {
        grid-template-columns: 1fr;
    }
}

@media print {
    html{
        font-size: 100%;
    }

    figure img{
        max-width: 3in;
        display: none;
    }

    header{
        display: none;
    }

    ol li{
        margin-bottom: 0;
    }

    /* Adjust layout for print */
    #recipe-grid {
        display: block;
    }

    #ingredients, #method {
        width: 100%;
    }
}