@import url("./link.css");

:root {
    --header-height: 45px;
    --footer-height: 100px;
}

body {
    width: 100vw;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: aliceblue;
}

main {
    padding: 10px;
    min-height: calc(100vh - (var(--header-height) + var(--footer-height)));
}


* {
    box-sizing: border-box;
}
