// Reset all default styles * { all: unset; margin: 0; padding: 0; border: 0; box-sizing: border-box; } // This is sometimes required on some browsers. title, script { display: none; } // Colors $bg-color: linear-gradient(135deg, #1c1c2b, #30284d); $text-color: #d4d4dc; $link-bg-color: #2f2f3e; $link-hover-color: #a498ce; $link-hover-bg-color: #3d3d50; $footer-bg-color: rgba(0, 0, 0, 0); body { font-family: Arial, sans-serif; background: $bg-color; color: $text-color; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; font-family: "IosevkaTermSlab Nerd Font Mono"; .container { text-align: center; h1 { font-size: 7rem; margin: 0; padding: 0.5em; transition: text-shadow 0.3s; &:hover { text-shadow: #a498ce 0px 0px 9px; } } nav { display: block; padding: 0.2rem; ul { list-style: none; padding: 0; margin: 0; display: flex; justify-content: center; gap: 1rem; padding: 0.7rem; li { a { text-decoration: none; color: $text-color; font-size: 1.5rem; transition: color 0.3s; background-color: $link-bg-color; padding: 0.5rem 2rem; &:hover { color: $link-hover-color; background-color: $link-hover-bg-color; } } } } } } footer { width: 100%; text-align: center; padding: 1rem; background-color: $footer-bg-color; color: $text-color; font-size: 1rem; position: fixed; bottom: 0; left: 0; text-shadow: 0 0 3px #000; } }