/* Add logo font face */ @font-face { font-family: 'Scottsdale-Italic'; src: url('../fonts/Scottsdale-Italic.ttf') format('truetype'); } #navigation-bar-container { background-color: hsl(0, 98%, 40%); box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.4); height: 50px; display: flex; } .sticky { position: fixed; top: 0; width: 100%; z-index: 1000; /* Adjust as needed */ } #logo { color: white; text-decoration: none; font-family: 'Scottsdale-Italic'; font-size: 25px; margin-right: 10px; } #logo:hover { font-size: 30px; } #line { height: 100%; /* spans the entire height of the navigation bar */ width: 10px; background-color: white; /* makes the line white */ transform: skewx(-20deg); /* rotates the line by 20 degrees */ transform-origin: top left; /* sets the rotation origin to top left */ margin-left: 10px; /* Add margin to separate the line from the logo */ }