This commit is contained in:
ben7sys
2024-11-01 06:42:44 +01:00
parent d8be0951b0
commit 7b26b3c509
15 changed files with 951 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
/* Reset and Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
font-size: 16px;
}
body {
font-family: 'Segoe UI', system-ui, sans-serif;
background-color: var(--bg-primary);
color: var(--text-color);
line-height: 1.6;
transition: var(--transition);
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}