/* legal mumbo jumbo style */ @import url(./palette.css); @import url(./scrollbar.css); body { background: var(--color-space-black); color: var(--color-white); font-family: 'Manrope'; /* Replace #ffffff and #000000 with your desired colors */ } .hlink:link { color: var(--color-white); background-color: transparent; text-decoration: none; } .hlink:visited { color: var(--color-white); background-color: transparent; text-decoration: none; } .link:link { color: var(--color-french-sky-blue); background-color: transparent; text-decoration: underline; } .link:visited { color: var(--color-deep-sky-blue); background-color: transparent; text-decoration: underline; } header h1 { font-weight: 800; font-size: 3em; display: flex; flex-direction: column; align-items: left; justify-content: left; } header logo { position: absolute; top: 2em; left: 1em; } header h1 { position: absolute; top: 0; left: 2em; } content { display: flex; flex-direction: column; align-items: center; justify-content: center; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } content p { text-align: center; font-size: 1.5em; font-weight: 400; } background { position: fixed; top: 0; right: 0; height: 100vh; z-index: -1; } background svg { height: 100%; width: 100%; }