This commit is contained in:
2025-08-18 16:13:05 -03:00
commit e3e83a3f40
12 changed files with 1054 additions and 0 deletions

17
css/style.css Normal file
View File

@@ -0,0 +1,17 @@
/* style.css - Glassmorphism and layout styles */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
/* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; */
font-family: "Lexend", sans-serif;
background: #000000;
min-height: 100vh;
overflow-x: hidden;
position: relative;
}