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

body {
    font-family: 'Lora', serif;
    font-size: 20px;
    
    color: #e8e3da;
    background-color: #151018;
}

#background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

main {
    width: min(720px, calc(100vw - 16px));
    margin: 0 auto;
}

a {
    color: #ffdf61;
}

.evil {
    color: #d63838;
    font-style: italic;
}

@media screen and (max-width: 500px) {
    body {
        font-size: 16px;
    }
}
