
        body {
            margin: 0;
            font-family: 'Georgia', serif;
            background: linear-gradient(135deg, #4b1c2f, #7d3a50, #a6526b);
            color: #e0e1dd;
        }
        h1 {
            font-size: 2.8em;
            margin-bottom: 0.4em;
        }
        p {
            font-size: 1.2em;
            max-width: 600px;
        }
        .layout {
display: flex;
height: 100vh;
}

.sidebar {
width: 220px;
background: rgba(255, 255, 255, 0.08);
padding: 20px;
color: #ffffff;
border-right: 1px solid rgba(255, 255, 255, 0.2);
height: 100vh;
box-sizing: border-box;
position: fixed;
top: 0;
left: 0;
}

.sidebar h2 {
margin-bottom: 15px;
font-size: 1.5em;
}

.sidebar ul {
list-style: none;
padding: 0;
}

.sidebar li {
margin-bottom: 12px;
}

.sidebar a {
color: #ffffff;
text-decoration: none;
font-weight: bold;
transition: opacity 0.3s ease;
}

.sidebar a:hover {
opacity: 0.7;
}

.main-content {
flex: 1;
padding: 40px;
color: #e0dddc;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
height: 100vh;
}

.section {
margin-bottom: 60px;
}
@media (min-width: 769px) {
.main-content {
margin-left: 220px;
}
}
@media (max-width: 768px) {
.layout {
flex-direction: column;
}

.sidebar {
width: 100%;
height: auto;
position: relative;
border-right: none;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
text-align: center;
}

.main-content {
padding: 20px;
text-align: center;
}

.sidebar h2 {
font-size: 1.2em;
}

.sidebar ul {
display: flex;
flex-direction: column;
gap: 10px;
padding: 0;
}

.sidebar li {
margin: 0;
}
}


.sidebar.active {
transform: translateX(0);
}

#toggleSidebar {
display: none; /* hidden by default, shows on mobile */
position: fixed;
top: 10px;
left: 10px;
z-index: 1000;
background-color: #4b1c2f;
color: white;
border: none;
padding: 10px 15px;
font-size: 1.2em;
cursor: pointer;
}
@media (max-width: 768px) {
.sidebar {
position: fixed;
top: 0;
left: 0;
height: 100vh;
width: 100%;
background: rgba(10, 0, 20, 0.96); /* feel free to change this tone */
z-index: 998;
padding: 40px 20px;
transform: translateX(-100%);
transition: transform 0.3s ease;
}

#toggleSidebar {
display: block !important;
}

.sidebar.active {
transform: translateX(0);
}
  #toggleSidebar {

    display: block;

  }
}
.stars {
position: fixed;
width: 100%;
height: 100%;
background: radial-gradient(#ffffff88 1px, transparent 1px),
radial-gradient(#ffffff55 1px, transparent 1px);
background-position: 0 0, 50px 50px;
background-size: 100px 100px;
pointer-events: none;
animation: starShift 20s linear infinite;
z-index: 0;
}

@keyframes starShift {
from {
background-position: 0 0, 50px 50px;
}
to {
background-position: 100px 100px, 150px 150px;
}
}
