style = html`
<style>
h1, h2, h3, h4, h5, h6 {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
body, text {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"
}
.big-title {
font-size: 3rem;
font-weight: bold;
}
.uppercase {
text-transform: uppercase;
letter-spacing: 2px;
}
pre > code {
background-color: grey;
color: whitesmoke;
padding: 5px;
}
.serif {
font-family: 'Adobe Caslon Pro', Garamond, ‘Hoefler Text’, ‘Times New Roman’, Times, serif;
}
p a[href] {
background-color: whitesmoke;
color: steelblue;
padding: 3px 6px;
border-radius: 5px;
}
p a[href]:hover {
background-color: steelblue;
color: white;
padding: 3px 6px;
border-radius: 5px;
text-decoration: none;
}
.has-text-weight-light {
font-weight: 100
}
.has-text-weight-semilight {
font-weight: 300
}
.has-text-weight-semibold {
font-weight: 500
}
.has-text-weight-bold {
font-weight: 700
}
button {
padding: 7px;
border-radius: 3px;
box-shadow: 1px 1px 4px 0 #cecece;
border: 1px solid whitesmoke;
background: white;
cursor: pointer;
}
</style>
`