/*
I have to confess you really shouldn't hire me just on account of my amazing CSS coding talent
*/

html {
    height: 100%;
    box-sizing: border-box;
  }

  *,
  *:before,
  *:after {
    box-sizing: inherit;
  }

body {
    position: relative;
    margin: 0;
    padding: 0;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-size: 80%;
    background-color: #eee;
}

.content {
    display: inline-block;
    padding: 3rem 3rem 2.5rem 2.5rem;
    text-align: initial;
}

@media (min-width: 60rem) {
    body {
        text-align: center;
        width: 100%;
        background-color: #444;
    }

    .content {
        background-color: #eee;
        max-width: 45rem;
        min-height: 100vh;
        margin-left: auto;
        margin-right: auto;
        border-left: 0.1rem solid #111;
        border-right: 0.1rem solid #111;
        box-shadow: 0 0 1.3rem rgba(0.2, 0.2, 0.2, 0.8);
    }
}

a:link {
    color: #a51;
    font-weight: bold;
}

a:visited {
    color: #a51;
}

a:hover {
    color: #f81;
}

a:active {
    color: #fa5;
}

h1 {
    margin-top: 0;
    font-weight: normal;
}
h2 {
    border-bottom: 0.1rem solid #ccc;
    font-weight: normal;
}
ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 0 0 2rem;
}
li {
    list-style: none;
    width: 8rem;
    margin-bottom: 1rem;
}