$bg-color: linear-gradient(135deg, #2c2c54, #40407a); $text-color: #ffffff; $link-hover-color: #a29bfe; body { margin: 0; padding: 0; font-family: Arial, sans-serif; background: $bg-color; color: $text-color; display: flex; justify-content: center; align-items: center; height: 100vh; } .container { text-align: center; h1 { font-size: 4rem; margin: 0; padding: 0.5em; } nav { ul { list-style: none; padding: 0; display: flex; justify-content: center; gap: 1.5rem; li { a { text-decoration: none; color: $text-color; font-size: 1.2rem; transition: color 0.3s; &:hover { color: $link-hover-color; } } } } } }