@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'PT Serif', serif;
    -webkit-font-smoothing: antialiased !important;
    text-rendering: optimizeLegibility !important;
    font-size: 20px;
    font-weight: 400;
    line-height: 2.25rem;
    color: #323232;
}

h1, h2 {
    font-weight: 700;
}

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 25px;
    box-sizing: border-box;
}

h1 {
    text-align: center;
    margin: 75px 0;
}

section {
    margin-bottom: 5rem;

    header {
        margin-bottom: 2rem;
    }
}