

* {
    box-sizing: border-box;
   
}

html {
    border-style: solid;
    border-width: 5px 0 0 0;
   
}

.flow > * + * {
    margin-block-start: var(--flow-space, 1em);
  }

input {
    border: 1px solid silver;
    border-radius: 5px;
    padding: 5px; 
}

body {
    
    margin: 0;
    max-width: 800px;
    padding: 0 20px 20px 20px;
    margin-left: auto;
    margin-right: auto;
}

p {
    margin-bottom: 10px;
    line-height: 1.4em;
}

p,
li,
dl {
  max-width: 70ch;
}

img {
    width: 100%;
}

pre {
    overflow: auto;
}

button, .button, input[type=submit] {
    display: inline-block;
   
    font-size: 1em;
    text-align: center;
    padding: 8px;
    margin-right: 5px;
    border-radius: 5px;
    text-decoration: none;
    border: none;
    line-height: normal;
    cursor: pointer;
}


button:last-child, .button:last-child {
    margin-right: 0;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.bordered {
    border: 3px solid;
}

.home {
    display: inline-block;
   
    margin-top: 20px;
    padding: 5px 10px 5px 10px;
    text-decoration: none;
    font-weight: bold;
}


/* Desktop sizes */
@media only screen and (min-width: 600px) {
    ol {
        column-count: 2;
    }
    
    .row {
        display: flex;
        flex-direction: row;
        padding: 0;
        width: 100%;
    }

    .row .column {
        display: block;
        flex: 1 1 auto;
        max-width: 100%;
        width: 100%;
    }

    .row .column:not(:last-child) {
        margin-right: 10px;
    }
}


