@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');

body {
    color:#292f33;
    margin:0;
    padding:1em;
    background-image: url('bkg.jpg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color:#ead3a1;
    background-blend-mode: screen;
    
    height:100vh;
    width:auto;
    overflow: hidden;

    font-family: "Crimson Text", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 32pt;

    display: flex;
    flex-direction: column;
    justify-content: center;
}
*>* {
    box-sizing:border-box;
    margin:0;
}

h1 {
    font-size: 64pt;
}
p {
    margin: 0.5em 0;
}

@media (orientation: landscape){
    body {
        font-size: 24pt;
    }
}
