:root { --main-bg: white; --nav-bg: lightgray; --main-fg: black; --links: #3271e7; } @font-face { font-family: 'Crimson Pro'; src: url(/static/CrimsonPro-Regular.woff2) format('woff2'); } @font-face { font-family: 'Crimson Pro'; font-weight: bold; src: url(/static/CrimsonPro-Bold.woff2) format('woff2'); } body { background-color: var(--main-bg); margin: 0px; color: var(--main-fg); } .header-outer { height: 80px; position: fixed; top: 0px; } .footer-outer { height: 60px; position: fixed; bottom: 0px; } .header-outer, .footer-outer { background-color: var(--nav-bg); width: 100%; } .header-inner, .footer-inner { max-width: 800px; margin: auto; padding-top: 20px; padding-bottom: 20px; display: flex; } .header-inner { justify-content: space-between; } .footer-inner { justify-content: flex-start; gap: 20px; } .header-inner h1, .header-inner p, .footer-inner p { margin: 0px; } .header-inner h1 a { color: var(--main-fg); } .header-inner .login-info { text-align: right; } .content { padding-top: 80px; padding-bottom: 60px; max-width: 800px; margin: auto; } h1, h2, p, label, input { font-family: 'Crimson Pro'; } h1 { font-size: 36px; } h2 { font-size: 27px; } p, label, input { font-size: 18px; } a { text-decoration: none; color: var(--links); }