@import url('https://fonts.googleapis.com/css2?family=Lalezar&display=swap'); * { margin: 0px; box-sizing: border-box; } body { font-family: "Lalezar", sans-serif; font-weight: 400; font-style: normal; } nav { background: black; position: sticky; top: 0px; z-index: 5; display: flex; } nav a { padding: 30px; font-size: 30px; color: #b7e2e9; text-decoration: none; letter-spacing: 5px; display: flex; justify-content: flex-end; flex-direction: row } nav a:hover { background-color: #e18c8c; transition-duration: 1s; } #omnie { text-align: center; } @media screen and (max-width: 600px) { nav { flex-direction: column; text-align: center; } nav a{ padding: 5px; } }