body{
        
        background-color: #D9D9D9;
        font-family: "Inria Sans", sans-serif;
        font-weight: 700;
        font-style: normal;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        height: 100vh;
        max-width: 100%;
        overflow-x: hidden;
}

html{
    all: unset;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

.credit{
  
  padding-bottom: 10px;
  width: 100%;
  text-align: center;
}
/* Scrollbar styles */
::-webkit-scrollbar {
    width: 10px;                /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
    background-color: #043841; /* Dark blue - matches your navbar/background */
}

::-webkit-scrollbar-thumb {
    background-color: #DB5442; /* Orange - matches your active button color */
    border-radius: 10px;       /* Rounded scrollbar thumb */
}

::-webkit-scrollbar-thumb:hover {
    background-color: #9B3A2D; /* Darker orange on hover - matches your hover colors */
}