/* Import font pack from Adobe Typekit */
@import url("https://use.typekit.net/egj3qdy.css");

/* Set box-sizing to border-box */
* {
    box-sizing: border-box;
}

body {
    /* Remove default margin and padding */
    margin: 0;
    padding: 0;

    /* Set default font family */
    font-family: "indivisible", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
}

/* Font setup */
strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin: 0;
}