53 lines
715 B
CSS
53 lines
715 B
CSS
.app {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.main {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding-top: 60px; /* Adjust based on your header height */
|
|
}
|
|
|
|
.section {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
padding: 1rem 0;
|
|
scroll-margin-top: 60px; /* This ensures the section doesn't get hidden behind the fixed header */
|
|
}
|
|
|
|
.content {
|
|
width: 75%;
|
|
max-width: 1200px;
|
|
}
|
|
|
|
/* Global styles */
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
/* padding-top: 60px; */
|
|
font-family: Arial, sans-serif;
|
|
line-height: 1.6;
|
|
color: #333;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
margin-top: 0;
|
|
}
|
|
|
|
:root {
|
|
--content-width: 75%;
|
|
--accent-color: #ff6b00;
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|