1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- @import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
- :root {
- --bg-color: #282c34;
- --bg-color-dim: #fff;
- }
- * {
- font-family: "Roboto", "Segoe UI", "Calibri", "San Francisco", sans-serif;
- }
- html {
- font-size: 18px;
- height: 100%;
- }
- body {
- background-color: var(--bg-color);
- color: white;
- height: 100%;
- }
- main {
- display: flex;
- flex-direction: column;
- min-height: 100%;
- justify-content: center;
- align-items: center;
- text-align: center;
- }
- img#logo {
- display: block;
- height: 250px;
- margin-bottom: 25px;
- }
- h1 {
- margin: 26px 0;
- }
- h2 {
- margin: 18px 0;
- }
- h3 {
- margin: 10px 0;
- }
- a {
- color: #8c9eff;
- text-decoration: none;
- }
- a:hover {
- color: #acb8ff;
- text-decoration: underline;
- }
- #note {
- color: var(--bg-color-dim);
- margin-top: 50px;
- font-size: 0.8em;
- }
|