initial commit

This commit is contained in:
2026-01-26 14:19:24 +01:00
commit f332d62f8a
8 changed files with 538 additions and 0 deletions

103
assets/styles/style.css Normal file
View File

@@ -0,0 +1,103 @@
:root {
--primary: #2b2d42;
--accent: #ef233c;
--light: #f8f9fa;
--text: #333;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
color: var(--text);
line-height: 1.6;
background-color: var(--light);
}
.container {
max-width: 1100px;
margin: auto;
padding: 2rem;
}
.navbar {
background: var(--primary);
color: white;
}
.navbar .container {
display: flex;
justify-content: space-between;
align-items: center;
}
.navbar a {
color: white;
margin-left: 1rem;
text-decoration: none;
}
.hero {
background: linear-gradient(135deg, var(--primary), #1a1c2c);
color: white;
text-align: center;
padding: 5rem 2rem;
}
.hero button {
margin-top: 1.5rem;
padding: 0.75rem 2rem;
border: none;
background: var(--accent);
color: white;
font-size: 1rem;
cursor: pointer;
}
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.feature {
background: white;
padding: 2rem;
border-radius: 8px;
}
.about {
background: #edf2f4;
}
.contact form {
display: flex;
flex-direction: column;
gap: 1rem;
}
.contact input,
.contact textarea {
padding: 0.75rem;
font-size: 1rem;
}
.contact button {
align-self: flex-start;
padding: 0.75rem 1.5rem;
background: var(--primary);
color: white;
border: none;
cursor: pointer;
}
.footer {
text-align: center;
padding: 1.5rem;
background: var(--primary);
color: white;
}