30 lines
509 B
CSS
30 lines
509 B
CSS
|
|
body {
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
background-color: #ffffff;
|
|
color: #212529;
|
|
}
|
|
|
|
.hero {
|
|
background-color: #f8f9fa;
|
|
padding: 4rem 2rem;
|
|
text-align: center;
|
|
border-bottom: 1px solid #dee2e6;
|
|
}
|
|
|
|
.features {
|
|
padding: 4rem 2rem;
|
|
}
|
|
|
|
.contact {
|
|
padding: 4rem 2rem;
|
|
background-color: #f8f9fa;
|
|
}
|
|
|
|
.toast-container {
|
|
position: fixed;
|
|
top: 1rem;
|
|
right: 1rem;
|
|
z-index: 1050;
|
|
}
|