@use "../abstracts" as *; nav { background-color: $bg-text-container; font-family: "Archivo Black", sans-serif; height: 10vh; width: 100vw; ul { display: flex; align-items: center; justify-content: flex-end; height: 100%; list-style-type: none; padding: 0 3rem; width: 100%; } // logo to the left side of navbar li:first-child { text-align: left; margin-right: auto; } li a { display: block; color: inherit; font-size: $medium-text; padding: 0 1.5rem; text-align: center; transition: transform 0.3s; text-decoration: none; white-space: nowrap; &:hover { @include main-link-hover; } } } // tablet & mobile @media screen and (max-width: 980px) { nav { height: fit-content; ul { @include flex-column-center; gap: 1rem; padding: 0; } li a { font-size: $big-text; } li:first-child { text-align: center; margin-right: 1.5rem; } } }