@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

html,body {
    font-family: 'Inter', sans-serif;
    margin:40px;
    line-height: 1.6em;
}
#wrapper {
    width:700px;
    margin:auto;
}
code {
    width:calc(100% - 32px);
    display: block;
    padding:16px;
    margin-top:16px;
    margin-bottom:16px;
    background-color:#eee;
    border-radius:8px;
}
h1 {
    font-size:50px;
    line-height:1.2em;
}
h2 {
    margin-top: 40px;
}
h3 {
    margin-top: 30px;
    font-weight: 600;
}
hr {
    height:2px;
    background-color:#AAA;
    border:0px;
    border-radius:30px;
}

table, th, td {
    padding:0;
    border-collapse: collapse;
    border: 1px #CCC solid;
}

th, td {
    padding: 10px;
}

th {
    font-weight:900;
}

@media only screen and (max-width: 800px) {
    html,body {
        margin:20px;
    }
    #wrapper {
        width: 100%;
    }
}