Files
Portfolio/styles/globals.css
2025-05-13 12:12:47 +02:00

25 lines
343 B
CSS

@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400&display=swap');
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
a {
text-decoration: none;
}
html,
body {
height: 100%;
scroll-behavior: smooth;
}
#__next {
min-height: 100vh;
display: flex;
flex-direction: column;
}