/* Load Libre Baskerville from Google Fonts and apply as the default serif typeface */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&display=swap');

body {
    font-family: 'Libre Baskerville', serif;
}

h1,
h2,
h3 {
    font-family: 'Libre Baskerville', serif;
}

.centered {
    margin: 0 auto;
}

.offset-top {
    margin-top: 25vh;
}
