:root {
    --main-color: #da591b;
    --secondary-color: #073763;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background-color: rgb(195, 195, 195);
    border-radius: 20px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background-color: rgb(70, 68, 68);
}

body {
    font-family: "roboto", sans-serif !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    overflow: hidden;
}


/* navbar container */
#navbar img {
    width: 120px;
}

#navbar button {
    border: 2px solid lightgray;
    /* background-color: lightgray; */
    border-radius: 20px;
    height: fit-content;
}

/* #navbar button:hover {
    background-color: lightgray;

} */

#navbar a {
    color: black;
    text-decoration: none;
}


/* main container */
h1 {
    font-weight: bolder;
    font-size: 3vw;
}

#main,
#footer,
#navbar {
    /* border: solid; */
}

#main {

    display: flex;
    flex-direction: column;
    justify-content: center
}


#main h1 span {
    color: var(--secondary-color);

}

#main p {
    font-size: 1.4vw;
    text-align: justify;
    width: 70%;
    max-width: 750px;
    margin-bottom: .7rem;
}

/* media queries for main container */
@media screen and (max-width: 768px) {
    body {
        height: fit-content;
        overflow: visible;
    }

    #main {
        height: fit-content;
        width: 100%;

    }

    h1 {
        font-size: 2rem;
        text-align: center;
    }

    #main p {
        font-size: 1.2rem;
        text-align: center;
        /* padding-inline: 10px; */
        margin-bottom: .5rem;
        width: 100%;

    }
}



/* footer  styling */

#footer {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 0;
    position: relative;
    min-height: 100px;
}

#footer>img {
    position: absolute;
    right: 0;
    bottom: -9%;

    height: 100%;
    min-height: 250px;

}

#footer>div>img {
    width: 70%;
}

#footer h1 span {
    color: var(--main-color)
}

#footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    /* padding-left: 10px; */
    display: flex;
    gap: 20px;
}

#footer a {
    text-decoration: none;
    color: black;
    font-size: 1.2rem;

}

#footer a:hover {
    text-decoration: underline;
}

/* media queries for footer container */
@media screen and (max-width: 768px) {

    #footer {
        width: 100%;
    }

    #footer>img {
        display: none;
        position: unset;
        width: 80%;
        margin-inline: auto;
    }

    /* #footer>div {
        width: 100%;
    } */
    #footer>div>img {
        width: 90%;
        display: block;
        margin-inline: auto;
    }

    #footer ul {
        padding-left: 0px;
        display: flex;
        gap: 20px;
        justify-content: center;
    }
}