first commit

This commit is contained in:
2025-05-13 12:12:47 +02:00
commit c37cf55f67
75 changed files with 13258 additions and 0 deletions

25
styles/globals.css Normal file
View File

@@ -0,0 +1,25 @@
@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;
}