@import "reset.css";
@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&display=swap');

/* site defaults */

body {
    font-family: "Didact Gothic", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.4rem;
    min-height: 100vh;
    background-image: linear-gradient(rgb(235, 236, 227), rgb(240, 240, 240));
    color: rgb(16, 13, 34);
}

p {
    text-indent: 0.8rem;
}

h1 {
    font-size: 2.4rem;
    font-weight: 700;
}

h2 {
    font-size: 2.0rem;
    font-weight: 700;
}

h3 {
    font-size: 1.6rem;
    font-weight: 600;
}

h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

h5 {
    font-size: 1.0rem;
    font-weight: 600;
    color: #999;
}

h6 {
    font-size: 0.8rem;
    font-weight: 600;
    font-style: italic;
    color: #999;
}

hr {
    border-top: 1px solid goldenrod;
    width: 75%;
    margin: auto;
}