@font-face { font-family: Comfortaa; src: url("/Comfortaa.ttf"); font-display: swap; } @font-face { font-family: Inter; src: url("/Inter.ttf"); font-display: swap; } @font-face { font-family: Raleway; src: url("/Raleway.ttf"); font-display: swap; } html { --primary: #151515; --secondary: #252525; --tertiary: #353535; --accent-primary: #B59BD8; --accent-secondary: #B59BD8; --accent-tertiary: #B59BD8; --text: #ffffffde; --grey: #5454547a; --font-primary: Raleway; --font-header: Raleway; } body { font-family: var(--font-primary); background-color: var(--primary); color: var(--text); margin: 0; display: flex; flex-direction: column; position: relative; min-height: 100vh; line-height: 1.625; } main { padding: 1rem; } a { text-decoration: underline; color: var(--accent-primary); text-underline-offset: 5px; transition: filter .25s; } a:hover { filter: brightness(125%); }