body, html{
    height: 100%;
    overflow-x: hidden;
    background-image: url(../images/background.png);
}

.container-fluid {
    min-height: 100vh;
    width: 100%;
}

.sidebar {
    background-color: #f5e8d3;
    
    text-align: center;
    border-right: 2px solid #ccc;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



.sidebar img {
    width: 50px;
    height: 50px;
}

.section-title {
    background-color: #4A010A;
    color: white;
    font-family: Libre Baskerville;
    font-weight: 500;
    
   
    
}


.main-content{
    width: 100%;
}

.menu-img {
    width: 280;
    height: 310px;
    object-fit: cover;
    border-radius: 5px;
}

.main-content {
    
    overflow-y: auto;
    /* Enable scrolling */
}
.main-content h1{
    font-family: Libre Baskerville;
    font-weight: 700;
    color: #4A010A;
}

/* Hide scrollbar but keep functionality */
.main-content::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome, Safari, Edge */
}

.main-content {
    -ms-overflow-style: none;
    /* Hide scrollbar for IE and Edge */
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
}




.sidebar .menu-head{
    font-family: Libre Baskerville;
    font-weight: 700;
    color: #4A010A;
}

@media (min-width: 768px) {
    .sidebar {
        width: 300px;
        height: 100vh;
        border-right: 2px solid #ccc;
    }

    .main-content {
        height: 100vh;
        width: 500px;
    }

    .menu-img{
        width: 300px;
        height: 300px;
    }
    
}


@media (max-width: 568px) {
    .menu-img{
        width: 250px;
        height: 250px;
    }
}


