/* Fonts. */
@font-face {
    font-family: "Josefin Sans";
    src: url(/fonts/JosefinSans-VariableFont_wght.ttf) format("truetype");
}

/* Tags. */
* {
    font-family: "Josefin Sans";
    color: black;
}

body,
html {
    margin: 0;
    width: 100svw;
    height: 100svh;
    background-color: white;
}

/* Base. */
#main {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}