body {
overflow-x: hidden;
display:flex;
flex-direction: column;


 font-family: "Comic Neue", cursive;
 background: #f0e1f5;
color: #333;
            min-height:100vh;
}
.container{
    flex:1;
}
.container-fluid{
    flex:1;
}
#header-title{
    text-decoration: none;
    color: #ff3399;
}

/* Sidebar */
#sidebar {
position: fixed;
top: 0;
left: -250px;
width: 250px;
height: 100%;
background-color: #ffccff;
transition: all 0.3s ease;
padding-top: 60px;
z-index: 1000;
box-shadow: 2px 0 10px rgba(0,0,0,0.2);
}

#sidebar.active {
left: 0;
}

/* Toggle button */
#menu-toggle {
position: fixed;
top: 15px;
left: 15px;
z-index: 1100;
background-color: #ff99cc;
border: none;
border-radius: 50%;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
cursor: pointer;
}

/* Sticky Topbar */
.topbar {
position: sticky;
top: 0;
background-color: #ffe6f0;
z-index: 900;
padding: 15px;
text-align: center;
font-size: 1.5rem;
font-weight: bold;
color: #ff3399;
border-bottom: 2px dashed #ff99cc;
}

.sidebar-link {
padding: 10px 20px;
display: block;
font-size: 1.1rem;
color: #990066;
text-decoration: none;
transition: background 0.3s;
}

.sidebar-link:hover {
background-color: #ffb3d9;
}

footer {
position: sticky;
margin-top:10px;
top: 0;
background-color: #ffe6f0;
z-index: 901;
padding: 15px;
text-align: center;
font-size: 1.5rem;
font-weight: bold;
color: #ff3399;
border-top: 2px dashed #ff99cc;
}

        h1 {
            text-align: center;
            color: #ff6347;
            margin-top: 30px;
            font-size: 50px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }
        .menu {
            text-align: center;
            margin-top: 50px;
        }
        .menu-item {
            font-size: 30px;
            padding: 20px 40px;
            margin: 15px;
            background-color: #ffeb3b;
            color: #ff5733;
            border-radius: 15px;
            text-decoration: none;
            display: inline-block;
            box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, background-color 0.3s;
        }
        .menu-item:hover {
            background-color: #ff5733;
            color: #fff;
            transform: translateY(-10px) rotate(5deg);
        }
        .menu-item:active {
            transform: translateY(5px);
        }
        .menu-item:nth-child(even) {
            background-color: #ff95b2;
        }
        .menu-item:nth-child(odd) {
            background-color: #80e5ff;
        }
        .menu-item img {
            width: 50px;
            margin-right: 10px;
        }
        .animate-in {
            animation: fadeInUp 0.5s ease-out;
        }
        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }