:root {
    --cream: #feeadb;
    --green-dark: #2d3f1a;
    --green-medium: #607f41;
    --green-light: #a4b85a;
    --orange: #e97f44;
    --text: white;
}

@font-face {
    font-family: 'Uncial Antiqua';
    src: url('../fonts/UncialAntiqua-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat italic';
    src: url('../fonts/Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    font-family: Montserrat, serif;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background: var(--cream);
    font-size: 20px;
}

body p {
    text-align: left;
    line-height: 25px;
}

header {
    position: fixed;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 150px;
    width: calc(100% - 300px);
    height: 100px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.page {
    margin-top: 100px;
    height: auto;
    overflow-y: auto;
    scroll-snap-type: y proximity;
    scrollbar-width: thin;
}

svg g {
    fill: var(--cream);
}

.italic {
    font-family: "Montserrat italic", serif;
}

.section {
    height: calc(100vh - 300px);
    padding: 200px 250px 100px 250px;
    scroll-snap-align: start;
    margin: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section h2:first-of-type {
    margin-top: 0;
}

.nav-book-link,
.book-link {
    border: none;
    border-radius: 20px;
    padding: 15px 30px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    width: 50%;
    margin: 0 auto;
}