19 lines
279 B
CSS
19 lines
279 B
CSS
html { scroll-behavior: smooth; }
|
|
*{ box-sizing: border-box; margin:0; padding:0;}
|
|
|
|
|
|
.main-nav{
|
|
display:flex;
|
|
width:100%;
|
|
gap: 1rem;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
list-style-type: none;
|
|
padding:1rem;
|
|
}
|
|
|
|
.main-nav a {
|
|
text-decoration: none;
|
|
}
|
|
|