* { margin: 0; padding: 0; box-sizing: border-box; } body { display: flex; flex-direction: column; min-height: 100vh; font-family: 'Source Code Pro', monospace; background: black; color: white; border: 1px solid purple; } html { overflow-y: scroll !important; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; } *::-webkit-scrollbar { width: 5px; } *::-webkit-scrollbar-thumb { background-color: #ffffff; border-radius: 20px; } *::-webkit-scrollbar-track { background: #000000; } .nav { position: relative; display: flex; border: 1px solid red; padding: 1rem; justify-content: space-between; isolation: isolate; } .nav .logo img { height: 3rem; border: 1px solid orange; } .nav .links { display: flex; align-items: center; justify-content: center; gap: 1rem; border: 1px solid orange; z-index: -1; } @media (min-width: 400px) { .nav .links { position: absolute; inset: 0; } } .content { border: 1px solid green; padding: 2rem 1rem; } footer { display: flex; width: 100vw; justify-content: center; align-items: center; align-self: flex-end; border: 1px solid cyan; margin-top: auto; }