@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Ensure the HTML and body take up the full height */
html, body {
    min-height: 100vh;
}

/* Main content area */
.content {
    flex: 1;
}

/* Footer styling */
.footer {
   text-align: center;
    padding: 20px 0;
    border-top: 2px solid lightgray;
}

/* Ensure the container inside the footer is full-width */
.footer .container-fluid {
    width: 100%;
}

/* Footer links */
.footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.footer a:hover {
    text-decoration: underline;
}

/* Footer text styling */
.footer .text-muted {
    color: #1a1111 !important;
}

@media (max-width: 768px) {
    
}
