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

* {
    box-sizing: border-box;
}

html {
    font-size: 5vh;
    font-family: 'Libre Baskerville', serif;
}
body {
    margin: 0;
}
main {
    overflow: hidden;
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}

main > section {
    width: calc(2010/1869*100vh);
    height: 100vh;
    display: grid;
    align-items: center;
    justify-items: center;
    background: url('images/frame.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    padding: 0px 12vh;
    scroll-snap-align: center;
}
main > section:focus {
    outline: none;
}
main > section > p {
    line-height: 1.5em;
}
#graph {
    position: sticky;
    top: 25vh;
    height: 50vh;
    display: block;
    margin: 0 3vw 0 auto;
}
