﻿/* root.css */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* { 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100vh;
}

body {
    height: 100%;
    font-family: "Open Sans", Verdana, Tahoma, Arial, Helvetica, sans-serif;
    background-color: #1e1b16;
    background-image: url('/img/wheat.webp');
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    font-size: 16pt;
}