:root { --color-bg: #21252b; --color-bg-light: #2c313a; --color-white: #c5cad3; --color-gray: #828997; --color-gray-dark: #5c6370; --color-gray-dark-dark: #454b54; --color-red: #e06c75; --color-red-light: #e9969d; --color-red-dark: #cb4d58; --color-orange: #d19a66; --color-orange-light: #ddb48d; --color-orange-dark: #b9804b; --color-yellow: #dace71; --color-yellow-light: #e5dc9a; --color-yellow-dark: #c4b754; --color-green: #98c379; --color-green-light: #b3d39c; --color-green-dark: #7fa762; --color-cyan: #71d6bc; --color-cyan-light: #98e1cf; --color-cyan-dark: #55bea4; --color-blue: #61afef; --color-blue-light: #90c7f4; --color-blue-dark: #3e97e0; --color-purple: #c678dd; --color-purple-light: #d7a1e8; --color-purple-dark: #af5bc8; --theme: var(--color-green); } * { box-sizing: border-box; } html, body { margin: 0; padding: 0; overflow-x: hidden; color: var(--color-white); background-color: var(--color-bg); } html { font-size: 16px; } body { min-height: 100vh; min-height: 100dvh; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 0; font-family: "Ubuntu", sans-serif; } span { display: block; font-size: 1rem; } a { text-decoration: none; } /* PAGE LAYOUT */ .page-container { flex-grow: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; } .page { max-width: 50vw; padding: 6rem 2rem; display: flex; flex-direction: column; gap: 4rem; text-align: center; } @media only screen and (max-width: 1000px) { .page { max-width: 100vw; } } /* PAGE TITLE */ .page > .title { margin: 2rem 0; } @media only screen and (max-width: 1000px) { .page > .title { margin: 0 0; } } .page > .title h1, .page > .title span { font-size: 2rem; } .page > .title .abolish { margin-bottom: 1rem; color: var(--color-gray); } .page > .title .introduce h1 { display: inline; margin: 0; background-image: linear-gradient(to right, var(--color-red), var(--color-orange), var(--color-yellow), var(--color-green), var(--color-blue), var(--color-purple)); -webkit-background-clip: text; color: transparent; } /* SECTIONS */ .section { width: 100%; } .section > .header { display: flex; flex-direction: row; align-items: center; justify-content: flex-start; gap: 0.5rem; color: var(--theme); } .section > .header .extra { color: var(--color-gray); } .section > .content { display: flex; flex-direction: column; gap: 1rem; padding: 1rem 2rem; } /* BOX */ .box { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: 2rem; border-radius: 2rem; background-color: var(--color-bg-light); } .box.shrink { display: inline-flex; } .box.important { border: 0.5rem solid var(--theme); } .box .title { display: inline-flex; flex-direction: row; justify-content: center; align-items: center; gap: 1rem; color: var(--theme); font-size: 1.5rem; } /* FOOTER */ .footer { width: 100%; display: flex; flex-direction: row; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding: 1rem; background-color: var(--color-bg-light); } .footer > div { flex-grow: 1; flex-shrink: 1; flex-basis: 0px; display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 0.5rem; text-align: center; } @media only screen and (max-width: 1000px) { .footer > div { flex-basis: 100%; justify-content: center !important; } } .footer > div a { font-size: 1rem; color: var(--theme); } .footer > div a:hover { text-decoration: underline; } .footer .delimiter { color: var(--color-gray); } .footer .brand { justify-content: flex-start; } .footer .legal { justify-content: flex-end; } .footer .brand img { height: 2rem; } .footer .brand .version { color: var(--color-gray); } .footer .lang .selected { font-weight: bold; color: inherit; }