initial commit

This commit is contained in:
arrelin
2026-03-06 15:31:24 +03:00
commit 5051b8e9de
38 changed files with 6868 additions and 0 deletions

31
frontend/src/index.css Normal file
View File

@@ -0,0 +1,31 @@
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Montserrat:wght@300;400;500&display=swap');
*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
:root {
--pink: #D4637A;
--pink-light: #F2A0B0;
--pink-pale: #FAE8EC;
--green: #6B8F6B;
--cream: #FDF8F5;
--text: #3A2828;
--text-muted: #9A7575;
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
padding: 0;
background: var(--cream);
color: var(--text);
font-family: 'Montserrat', sans-serif;
font-weight: 300;
-webkit-font-smoothing: antialiased;
}